From 6ed1267ee5ccc4380fd6581f63c14c3a241fc278 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Sat, 30 Jul 2022 15:06:43 +0530 Subject: [PATCH] feat(gui-v2): Sort direction dropdown issue Signed-off-by: Pranav C --- .../nc-gui-v2/components/smartsheet-toolbar/SortListMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui-v2/components/smartsheet-toolbar/SortListMenu.vue b/packages/nc-gui-v2/components/smartsheet-toolbar/SortListMenu.vue index 4cf7f06437..cc85c8909e 100644 --- a/packages/nc-gui-v2/components/smartsheet-toolbar/SortListMenu.vue +++ b/packages/nc-gui-v2/components/smartsheet-toolbar/SortListMenu.vue @@ -58,7 +58,7 @@ watch( v-model:value="sort.direction" size="small" class="flex-shrink-1 flex-grow-0 caption nc-sort-dir-select" - :items="[ + :options="[ { text: 'asc', value: 'asc' }, { text: 'desc', value: 'desc' }, ]"