Merge branch 'develop' into fix-14921

This commit is contained in:
かっこかり 2024-11-10 15:11:47 +09:00 committed by GitHub
commit 6219be759f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,8 @@
### General
- Feat: コンテンツの表示にログインを必須にできるように
- Feat: 過去のノートを非公開化/フォロワーのみ表示可能にできるように
- Enhance: 依存関係の更新
- Enhance: l10nの更新
- Enhance: 登録時の処理のエラーの内容を詳細に表示するように
### Client
@ -26,6 +28,7 @@
- Fix: リンク切れを修正
= Fix: ノート投稿ボタンにホバー時のスタイルが適用されていないのを修正
(Cherry-picked from https://github.com/taiyme/misskey/pull/305)
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
### Server
- Enhance: 起動前の疎通チェックで、DBとメイン以外のRedisの疎通確認も行うように

View File

@ -343,6 +343,8 @@ async function onSubmit(): Promise<void> {
onSignupApiError(message ? { title: i18n.ts.somethingHappened, text: message } : undefined);
}
} else {
onSignupApiError();
}
submitting.value = false;