1004-add-board-menu (#1045)

This commit is contained in:
Asaad Mahmood 2021-08-21 02:43:04 +05:00 committed by GitHub
parent e8eeb51046
commit a938fbeddf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ const BoardTemplateMenuItem = React.memo((props: Props) => {
rightIcon={!isGlobal &&
<MenuWrapper stopPropagationOnToggle={true}>
<IconButton icon={<OptionsIcon/>}/>
<Menu position='left'>
<Menu position='right'>
<Menu.Text
icon={<EditIcon/>}
id='edit'

View file

@ -13,7 +13,7 @@ import './menu.scss'
type Props = {
children: React.ReactNode
position?: 'top'|'bottom'|'left'
position?: 'top'|'bottom'|'left'|'right'
}
export default class Menu extends React.PureComponent<Props> {