From cd2925cd94bce0cf7c0480028ef0daa0383c4420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D5=A1=C9=A8=D5=BC=C9=A2=D3=84=D5=A1=D6=85=D5=BC=C9=A2?= Date: Mon, 13 Nov 2023 11:59:59 +0800 Subject: [PATCH] fix(nc-gui): incorrect prop name --- .../nc-gui/components/smartsheet/expanded-form/Comments.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue b/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue index 169d016529..c07c14cfc2 100644 --- a/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue +++ b/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue @@ -5,7 +5,7 @@ import { Icon } from '@iconify/vue' import { ref, timeAgo, useExpandedFormStoreOrThrow, useGlobal, useRoles, watch } from '#imports' const props = defineProps<{ - isLoading: boolean + loading: boolean }>() const { loadCommentsAndLogs, commentsAndLogs, saveComment: _saveComment, comment, updateComment } = useExpandedFormStoreOrThrow() @@ -16,7 +16,7 @@ const commentsWrapperEl = ref() const { user, appInfo } = useGlobal() -const isExpandedFormLoading = computed(() => props.isLoading) +const isExpandedFormLoading = computed(() => props.loading) const tab = ref<'comments' | 'audits'>('comments') @@ -341,4 +341,4 @@ watch(commentInputDomRef, () => { :deep(.green.lighten-4) { @apply bg-green-100 rounded-md !mr-3 !leading-6; } - + \ No newline at end of file