Skip to content
Snippets Groups Projects
Commit 8e04bd12 authored by syuilo's avatar syuilo
Browse files

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

parent 270df5c5
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment