Browse Source

fix: table icon issue

pull/7424/head
Ramesh Mane 7 months ago
parent
commit
99186966a9
  1. 4
      packages/nc-gui/components/project/AllTables.vue

4
packages/nc-gui/components/project/AllTables.vue

@ -142,7 +142,9 @@ const onCreateBaseClick = () => {
@click="openTable(table)"
>
<div class="flex flex-row w-2/5 items-center gap-x-2" data-testid="proj-view-list__item-title">
<GeneralIcon icon="table" class="text-gray-700" />
<div class="min-w-5 flex items-center justify-center">
<GeneralTableIcon :meta="{ meta: table.meta }" class="text-gray-500" />
</div>
{{ table?.title }}
</div>
<div class="w-1/5 text-gray-600" data-testid="proj-view-list__item-type">

Loading…
Cancel
Save