diff --git a/packages/nc-gui/components/smartsheet/PlainCell.vue b/packages/nc-gui/components/smartsheet/PlainCell.vue index 031683208d..3c348da80f 100644 --- a/packages/nc-gui/components/smartsheet/PlainCell.vue +++ b/packages/nc-gui/components/smartsheet/PlainCell.vue @@ -319,7 +319,7 @@ const parseValue = (value: any, col: ColumnType): string => { if (isRollup(col)) { return getRollupValue(value, col) } - if (isLookup(col)) { + if (isLookup(col) || isLTAR(col.uidt, col.colOptions)) { return getLookupValue(value, col) } if (isCreatedOrLastModifiedTimeCol(col)) { diff --git a/packages/nc-gui/components/smartsheet/calendar/RecordCard.vue b/packages/nc-gui/components/smartsheet/calendar/RecordCard.vue index 0c8b2445b3..2fed85dc5e 100644 --- a/packages/nc-gui/components/smartsheet/calendar/RecordCard.vue +++ b/packages/nc-gui/components/smartsheet/calendar/RecordCard.vue @@ -74,19 +74,19 @@ const emit = defineEmits(['resize-start'])
.... - - + - +
....