Browse Source

fix: render formula field type display value in blue

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

Loading…
Cancel
Save