diff --git a/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue b/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue index 9680d34df4..50cd3247ca 100644 --- a/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue +++ b/packages/nc-gui/components/smartsheet/expanded-form/Comments.vue @@ -75,7 +75,7 @@ onKeyStroke('Enter', (event) => { }) const comments = computed(() => commentsAndLogs.value.filter((log) => log.op_type === 'COMMENT')) -const audits = computed(() => commentsAndLogs.value.filter((log) => log.op_type !== 'COMMENT')) +const audits = computed(() => commentsAndLogs.value.filter((log) => log.op_type !== 'COMMENT' && log.details)) function editComment(log: AuditType) { editLog.value = log @@ -176,7 +176,7 @@ const onClickAudit = () => {