Browse Source

fix(nc-gui): Fixed table icon for ERD

pull/6622/head
Muhammed Mustafa 11 months ago
parent
commit
906dbcd5be
  1. 2
      packages/nc-gui/components/erd/TableNode.vue

2
packages/nc-gui/components/erd/TableNode.vue

@ -65,7 +65,7 @@ watch(
:class="[showSkeleton ? '' : '', hasColumns ? '' : '']"
class="text-gray-800 text-sm py-4 border-b-1 border-gray-200 rounded-t-lg w-full h-full px-3 font-medium flex items-center"
>
<GeneralTableIcon class="text-primary" :class="{ '!text-6xl !w-auto mr-2': showSkeleton }" :meta="table" />
<GeneralTableIcon class="text-primary" :class="{ '!text-6xl !w-auto mr-2 !h-18': showSkeleton }" :meta="table" />
<div :class="showSkeleton ? 'text-6xl' : ''" class="flex pr-2 pl-1">
{{ table.title }}
</div>

Loading…
Cancel
Save