1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-08 15:06:08 +02:00

Opening the actions menu from the view header to the left (#2689)

* Opening the actions menu from the view header to the left

* Fixing jest tests
This commit is contained in:
Jesús Espino 2022-04-04 15:53:11 +02:00 committed by GitHub
parent e1c894b7bb
commit 7d0a4afa8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ exports[`components/viewHeader/viewHeaderActionsMenu return menu 1`] = `
/>
</button>
<div
class="Menu noselect bottom "
class="Menu noselect left "
>
<div
class="menu-contents"
@ -116,7 +116,7 @@ exports[`components/viewHeader/viewHeaderActionsMenu return menu and verify call
/>
</button>
<div
class="Menu noselect bottom "
class="Menu noselect left "
>
<div
class="menu-contents"
@ -213,7 +213,7 @@ exports[`components/viewHeader/viewHeaderActionsMenu return menu and verify call
/>
</button>
<div
class="Menu noselect bottom "
class="Menu noselect left "
>
<div
class="menu-contents"

View File

@ -100,7 +100,7 @@ const ViewHeaderActionsMenu = (props: Props) => {
<ModalWrapper>
<MenuWrapper label={intl.formatMessage({id: 'ViewHeader.view-header-menu', defaultMessage: 'View header menu'})}>
<IconButton icon={<OptionsIcon/>}/>
<Menu>
<Menu position='left'>
<Menu.Text
id='exportCsv'
name={intl.formatMessage({id: 'ViewHeader.export-csv', defaultMessage: 'Export to CSV'})}