fix: prevent click event when publish button is disabled (#1481)

zio/stable
sechi 2023-01-29 06:00:20 +08:00 committed by GitHub
parent ca65f7379e
commit 8c76dad3c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ export const usePublish = (options: {
}, { deep: true })
async function publishDraft() {
if (isPublishDisabled)
return
let content = htmlToText(draft.params.status || '')
if (draft.mentions?.length)
content = `${draft.mentions.map(i => `@${i}`).join(' ')} ${content}`