fix: provide callback for focus-editor injection (#435)

This commit is contained in:
Joaquín Sánchez 2022-12-14 18:20:03 +01:00 committed by GitHub
parent 39ed6bffec
commit 1cd86996ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ const props = defineProps<{
command?: boolean
}>()
const focusEditor = inject<() => void>('focus-editor')
const focusEditor = inject<typeof noop>('focus-editor', noop)
const { details, command } = $(props)
@ -23,7 +23,7 @@ const reply = () => {
if (!checkLogin())
return
if (details) {
focusEditor?.()
focusEditor()
}
else {
const { key, draft } = getReplyDraft(status)