fix: remove sort in kanban view
This commit is contained in:
parent
fda377f6d2
commit
1909517c3e
@ -60,6 +60,7 @@
|
|||||||
|
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2">
|
||||||
<SortBy
|
<SortBy
|
||||||
|
v-if="route.params.viewType !== 'kanban'"
|
||||||
v-model="list"
|
v-model="list"
|
||||||
:doctype="doctype"
|
:doctype="doctype"
|
||||||
@update="updateSort"
|
@update="updateSort"
|
||||||
@ -161,7 +162,12 @@
|
|||||||
:default_filters="filters"
|
:default_filters="filters"
|
||||||
@update="updateFilter"
|
@update="updateFilter"
|
||||||
/>
|
/>
|
||||||
<SortBy v-model="list" :doctype="doctype" @update="updateSort" />
|
<SortBy
|
||||||
|
v-if="route.params.viewType !== 'kanban'"
|
||||||
|
v-model="list"
|
||||||
|
:doctype="doctype"
|
||||||
|
@update="updateSort"
|
||||||
|
/>
|
||||||
<KanbanSettings
|
<KanbanSettings
|
||||||
v-if="route.params.viewType === 'kanban'"
|
v-if="route.params.viewType === 'kanban'"
|
||||||
v-model="list"
|
v-model="list"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user