fix(client): ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正

This commit is contained in:
syuilo 2021-11-21 14:01:53 +09:00
parent 270df5c5b0
commit 8e04bd12cf
3 changed files with 10 additions and 0 deletions

View file

@ -12,6 +12,7 @@
### Improvements
### Bugfixes
- クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
### Changes
- クライアント: ノートにモデレーターバッジを表示するのを廃止

View file

@ -808,6 +808,7 @@ ffVisibility: "つながりの公開範囲"
ffVisibilityDescription: "自分のフォロー/フォロワー情報の公開範囲を設定できます。"
continueThread: "さらにスレッドを見る"
deleteAccountConfirm: "アカウントが削除されます。よろしいですか?"
incorrectPassword: "パスワードが間違っています。"
_emailUnavailable:
used: "既に使用されています"

View file

@ -197,6 +197,14 @@ export default defineComponent({
});
break;
}
case '932c904e-9460-45b7-9ce6-7ed33be7eb2c': {
os.alert({
type: 'error',
title: this.$ts.loginFailed,
text: this.$ts.incorrectPassword,
});
break;
}
case 'e03a5f46-d309-4865-9b69-56282d94e1eb': {
showSuspendedDialog();
break;