From 901a9bf642adae9fc446cba60ab4456bd4a84d12 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Mon, 2 Oct 2023 11:43:01 +0000 Subject: [PATCH] fix: Fixed bug with expanded form comment list not coming up --- packages/nc-gui/components/smartsheet/expanded-form/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/smartsheet/expanded-form/index.vue b/packages/nc-gui/components/smartsheet/expanded-form/index.vue index 25d373ba63..18194aaaf4 100644 --- a/packages/nc-gui/components/smartsheet/expanded-form/index.vue +++ b/packages/nc-gui/components/smartsheet/expanded-form/index.vue @@ -353,7 +353,7 @@ watch( ) const showRightSections = computed(() => { - return !isNew && commentsDrawer && isUIAllowed('commentList') + return !isNew.value && commentsDrawer.value && isUIAllowed('commentList') })