Browse Source

fix: render displayValue in blue color in gallery & Kanban view

pull/7361/head
Ramesh Mane 9 months ago
parent
commit
03468c17d9
  1. 4
      packages/nc-gui/components/smartsheet/Gallery.vue
  2. 4
      packages/nc-gui/components/smartsheet/Kanban.vue

4
packages/nc-gui/components/smartsheet/Gallery.vue

@ -295,7 +295,7 @@ watch(
<LazySmartsheetVirtualCell
v-if="isVirtualCol(displayField)"
v-model="record.row[displayField.title]"
class="!text-gray-600"
class="!text-brand-500"
:column="displayField"
:row="record"
/>
@ -303,7 +303,7 @@ watch(
<LazySmartsheetCell
v-else
v-model="record.row[displayField.title]"
class="!text-gray-600"
class="!text-brand-500"
:column="displayField"
:edit-enabled="false"
:read-only="true"

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

@ -593,7 +593,7 @@ const getRowId = (row: RowType) => {
<LazySmartsheetVirtualCell
v-if="isVirtualCol(displayField)"
v-model="record.row[displayField.title]"
class="!text-gray-600"
class="!text-brand-500"
:column="displayField"
:row="record"
/>
@ -601,7 +601,7 @@ const getRowId = (row: RowType) => {
<LazySmartsheetCell
v-else
v-model="record.row[displayField.title]"
class="!text-gray-600"
class="!text-brand-500"
:column="displayField"
:edit-enabled="false"
:read-only="true"

Loading…
Cancel
Save