Browse Source

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

pull/7148/head
Ramesh Mane 9 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"
class="tab-info"
:class="{
'bg-primary-selected': projectPageTab === 'data-source',
'bg-gray-50': projectPageTab !== 'data-source',
'bg-primary-selected': projectPageTab === 'collaborator',
'bg-gray-50': projectPageTab !== 'collaborator',
}"
>
{{ workspaceUserCount }}

Loading…
Cancel
Save