fix: show customize quick filter in kanban if manager
This commit is contained in:
parent
7a99e80ccf
commit
3029456be5
@ -193,7 +193,7 @@
|
|||||||
@update="(isDefault) => updateColumns(isDefault)"
|
@update="(isDefault) => updateColumns(isDefault)"
|
||||||
/>
|
/>
|
||||||
<Dropdown
|
<Dropdown
|
||||||
v-if="route.params.viewType !== 'kanban'"
|
v-if="route.params.viewType !== 'kanban' || isManager()"
|
||||||
:options="[
|
:options="[
|
||||||
{
|
{
|
||||||
group: __('Options'),
|
group: __('Options'),
|
||||||
@ -203,7 +203,7 @@
|
|||||||
label: __('Export'),
|
label: __('Export'),
|
||||||
icon: () => h(ExportIcon, { class: 'h-4 w-4' }),
|
icon: () => h(ExportIcon, { class: 'h-4 w-4' }),
|
||||||
onClick: () => (showExportDialog = true),
|
onClick: () => (showExportDialog = true),
|
||||||
condition: () => !options.hideColumnsButton,
|
condition: () => !options.hideColumnsButton && route.params.viewType !== 'kanban',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: __('Customize quick filters'),
|
label: __('Customize quick filters'),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user