Browse Source

Merge pull request #3992 from nocodb/fix/missing-kanban-collapsed-title

fix(nc-gui): add missing uncategorized title when stack is collapsed
pull/3996/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
3e3b7a9987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      packages/nc-gui/components/smartsheet/Kanban.vue

7
packages/nc-gui/components/smartsheet/Kanban.vue

@ -488,8 +488,11 @@ watch(view, async (nextView) => {
<div v-else class="nc-kanban-data-count mt-[12px] mx-[10px]">
<!-- Stack title -->
<div class="float-right flex gap-2 items-center cursor-pointer font-bold">
<LazyGeneralTruncateText>{{ stack.title }}</LazyGeneralTruncateText>
<div
class="float-right flex gap-2 items-center cursor-pointer font-bold"
:class="{ capitalize: stack.title === null }"
>
<LazyGeneralTruncateText>{{ stack.title ?? 'uncategorized' }}</LazyGeneralTruncateText>
<mdi-menu-down class="text-grey text-lg" />
</div>
<!-- Record Count -->

Loading…
Cancel
Save