Browse Source

fix: tag color, should be grey when tab is inactive (EE)

pull/7148/head
Ramesh Mane 11 months ago
parent
commit
352c37c6cc
  1. 4
      packages/nc-gui/components/project/View.vue

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

@ -122,8 +122,8 @@ watch(
v-if="workspaceUserCount" v-if="workspaceUserCount"
class="tab-info" class="tab-info"
:class="{ :class="{
'bg-primary-selected': projectPageTab === 'data-source', 'bg-primary-selected': projectPageTab === 'collaborator',
'bg-gray-50': projectPageTab !== 'data-source', 'bg-gray-50': projectPageTab !== 'collaborator',
}" }"
> >
{{ workspaceUserCount }} {{ workspaceUserCount }}

Loading…
Cancel
Save