From 43df1a00330b814d6791abdc3cb14407723b4d5b Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:12:20 +0530 Subject: [PATCH] fix(nc-gui): calendar tooltips not showing fix(nc-gui): handle ltar (#8870) Co-authored-by: DarkPhoenix2704 --- packages/nc-gui/components/smartsheet/PlainCell.vue | 2 +- .../nc-gui/components/smartsheet/calendar/RecordCard.vue | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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'])
.... - - + - +
....