fix(client): ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
This commit is contained in:
parent
270df5c5b0
commit
8e04bd12cf
3 changed files with 10 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
|||
### Improvements
|
||||
|
||||
### Bugfixes
|
||||
- クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
|
||||
|
||||
### Changes
|
||||
- クライアント: ノートにモデレーターバッジを表示するのを廃止
|
||||
|
|
|
@ -808,6 +808,7 @@ ffVisibility: "つながりの公開範囲"
|
|||
ffVisibilityDescription: "自分のフォロー/フォロワー情報の公開範囲を設定できます。"
|
||||
continueThread: "さらにスレッドを見る"
|
||||
deleteAccountConfirm: "アカウントが削除されます。よろしいですか?"
|
||||
incorrectPassword: "パスワードが間違っています。"
|
||||
|
||||
_emailUnavailable:
|
||||
used: "既に使用されています"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue