Skip to content

Commit

Permalink
Merge pull request '[DE][mobile] fix bug 72566' (#273) from fix/bug-7…
Browse files Browse the repository at this point in the history
…2566 into release/v8.3.0

Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/web-apps/pulls/273
  • Loading branch information
K0R0L committed Feb 1, 2025
2 parents 76a2b09 + c26d9fb commit 9c87f4d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions apps/common/mobile/lib/controller/ContextMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,15 @@ class ContextMenuController extends Component {

render() {
return (
<Fragment>
<ContextMenuView items={this.state.items} onMenuClosed={this.onMenuClosed} onMenuItemClick={this.onMenuItemClick} />
<ActionsWithExtraItems items={this.state.extraItems} onMenuItemClick={this.onMenuItemClick} opened={this.state.openedMore} onActionClosed={this.onActionClosed}/>
</Fragment>
<div>
<ContextMenuView items={this.state.items}
onMenuClosed={this.onMenuClosed}
onMenuItemClick={this.onMenuItemClick} />
<ActionsWithExtraItems items={this.state.extraItems}
onMenuItemClick={this.onMenuItemClick}
opened={this.state.openedMore}
onActionClosed={this.onActionClosed}/>
</div>
)
}
}
Expand Down

0 comments on commit 9c87f4d

Please sign in to comment.