From bdddf453afe19f0907bc5a54c90bb89f201ac60f Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Mon, 3 Oct 2022 17:05:06 +0800 Subject: [PATCH] fix(nc-gui): make collapsed stack draggable --- packages/nc-gui/components/smartsheet/Kanban.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/smartsheet/Kanban.vue b/packages/nc-gui/components/smartsheet/Kanban.vue index ae2cfb3749..9820cf7e5a 100644 --- a/packages/nc-gui/components/smartsheet/Kanban.vue +++ b/packages/nc-gui/components/smartsheet/Kanban.vue @@ -455,7 +455,7 @@ watch(view, async (nextView) => { v-else :key="`${stack.id}-collapsed`" :style="`background-color: ${stack.color} !important`" - class="nc-kanban-stack nc-kanban-collapsed-stack mx-4 flex items-center w-[300px] h-[50px] rounded-[12px] cursor-pointer h-full !pr-[10px]" + class="nc-kanban-collapsed-stack mx-4 flex items-center w-[300px] h-[50px] rounded-[12px] cursor-pointer h-full !pr-[10px]" :class="{ 'not-draggable': stack.id === 'uncategorized' || isLocked || isPublic || !hasEditPermission, }"