Browse Source

fix: comment input focus issue after saving comment

pull/7298/head
Ramesh Mane 10 months ago
parent
commit
9116bb7d03
  1. 4
      packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

4
packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

@ -116,6 +116,10 @@ const saveComment = async () => {
console.error(e)
} finally {
isSaving.value = false
setTimeout(() => {
commentInputDomRef.value?.focus()
}, 400)
}
}

Loading…
Cancel
Save