1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 01:36:03 +02:00

fix(frontend): 条件により保存できない場合のメッセージを汎用的なものへ (#16238)

Fix #16228
This commit is contained in:
tamaina
2025-07-03 17:59:55 +09:00
committed by GitHub
parent 09a5e4b10a
commit 706244925d
3 changed files with 4 additions and 4 deletions

View File

@@ -1195,7 +1195,7 @@ function showDraftMenu(ev: MouseEvent) {
if (!canSaveAsServerDraft.value) {
return os.alert({
type: 'error',
text: i18n.ts._drafts.cannotCreateDraftOfRenote,
text: i18n.ts._drafts.cannotCreateDraft,
});
}
saveServerDraft();