Skip to content

Commit

Permalink
change toolbar order
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Mar 26, 2020
1 parent 981e359 commit d440a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/toolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const rename: IToolbarAction = {
dialog.open();
},
options: {
order: 4,
order: 5,
featureCategory: 'ui',
featureLevel: 'advanced'
}
Expand Down Expand Up @@ -276,7 +276,7 @@ export const toolbarActions: {[key: string]: IToolbarAction | IToolbarDialogAddo
remove,
rename,
setShowTopN,
search: uiDialog('Search …', SearchDialog, (ctx) => [ctx.provider], {shortcut: true, order: 3, featureCategory: 'ranking', featureLevel: 'basic'}),
search: uiDialog('Search …', SearchDialog, (ctx) => [ctx.provider], {shortcut: true, order: 4, featureCategory: 'ranking', featureLevel: 'basic'}),
filterNumber: uiDialog('Filter …', NumberFilterDialog, (ctx) => [ctx], {shortcut: true, featureCategory: 'ranking', featureLevel: 'basic'}),
filterDate: uiDialog('Filter …', DateFilterDialog, (ctx) => [ctx], {shortcut: true, featureCategory: 'ranking', featureLevel: 'basic'}),
filterString: uiDialog('Filter …', StringFilterDialog, () => [], {shortcut: true, featureCategory: 'ranking', featureLevel: 'basic'}),
Expand Down

0 comments on commit d440a3c

Please sign in to comment.