Browse Source

fix: render formula field type display value in blue

pull/7361/head
Ramesh Mane 9 months ago
parent
commit
1faea6dd48
  1. 2
      packages/nc-gui/components/smartsheet/VirtualCell.vue

2
packages/nc-gui/components/smartsheet/VirtualCell.vue

@ -23,6 +23,7 @@ import {
isRollup, isRollup,
provide, provide,
toRef, toRef,
isPrimary,
} from '#imports' } from '#imports'
import type { Row } from '#imports' import type { Row } from '#imports'
@ -99,6 +100,7 @@ onUnmounted(() => {
class="nc-virtual-cell w-full flex items-center" class="nc-virtual-cell w-full flex items-center"
:class="{ :class="{
'text-right justify-end': isGrid && !isForm && isRollup(column) && !isExpandedForm, 'text-right justify-end': isGrid && !isForm && isRollup(column) && !isExpandedForm,
'text-brand-500': isPrimary(column) && !isForm,
}" }"
@keydown.enter.exact="onNavigate(NavigateDir.NEXT, $event)" @keydown.enter.exact="onNavigate(NavigateDir.NEXT, $event)"
@keydown.shift.enter.exact="onNavigate(NavigateDir.PREV, $event)" @keydown.shift.enter.exact="onNavigate(NavigateDir.PREV, $event)"

Loading…
Cancel
Save