fix: check login in zen mode (#2258)

This commit is contained in:
Sma11X 2023-08-02 18:27:31 +08:00 committed by GitHub
parent 9ae0d9b744
commit 603e10b6ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,8 @@ const emit = defineEmits<{
(event: 'afterEdit'): void
}>()
const focusEditor = inject<typeof noop>('focus-editor', noop)
const { details, command } = $(props)
const {
@ -97,8 +99,10 @@ async function deleteAndRedraft() {
}
function reply() {
if (!checkLogin())
return
if (details) {
// TODO focus to editor
focusEditor()
}
else {
const { key, draft } = getReplyDraft(status)