1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00

Add no-sort option

This commit is contained in:
Chen-I Lim 2020-10-26 09:56:12 -07:00
parent 0c35255dcb
commit fdf61bc424

View File

@ -229,6 +229,16 @@ class ViewHeader extends React.Component<Props, State> {
/>
</div>
<Menu>
<Menu.Text
id='none'
name='None'
onClick={() => {
mutator.changeViewSortOptions(activeView, [])
}}
/>
<Menu.Separator />
{boardTree.board.cardProperties.map((option: IPropertyTemplate) => (
<Menu.Text
key={option.id}