Skip to content

Commit

Permalink
CB-4761 remove rtl mode from menu (#2424)
Browse files Browse the repository at this point in the history
Co-authored-by: Daria Marutkina <[email protected]>
  • Loading branch information
devnaumov and dariamarutkina authored Mar 12, 2024
1 parent a1f5aab commit 70dafdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const AppStateMenu = observer(function AppStateMenu() {
return (
<SContext registry={registry}>
<div className={s(styles, { menuWrapper: true, appStateMenu: true })}>
<MenuBar menu={menu} nestedMenuSettings={{ modal: true }} rtl />
<MenuBar menu={menu} nestedMenuSettings={{ modal: true }} />
</div>
</SContext>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const UserMenu = observer(function UserMenu() {
return (
<Loader suspense inline>
<UserInfo info={authInfoService.userInfo} />
<ContextMenu className={s(styles, { contextMenu: true })} menu={menu} rtl modal>
<ContextMenu className={s(styles, { contextMenu: true })} menu={menu} modal>
<Icon className={s(styles, { icon: true })} name="angle" viewBox="0 0 15 8" />
</ContextMenu>
</Loader>
Expand Down

0 comments on commit 70dafdc

Please sign in to comment.