diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-04-13 16:59:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 16:59:01 +0900 |
| commit | f7195d54d0f4ab0de74aea199bd6a23175b3897c (patch) | |
| tree | c07d2a955b4bea8b035a6d8f6a4a67a0ce252ab7 /packages/frontend/src/pages/settings | |
| parent | fix(backend): サーバー名の変更をシステムアカウントの名前... (diff) | |
| download | misskey-f7195d54d0f4ab0de74aea199bd6a23175b3897c.tar.gz misskey-f7195d54d0f4ab0de74aea199bd6a23175b3897c.tar.bz2 misskey-f7195d54d0f4ab0de74aea199bd6a23175b3897c.zip | |
fix(frontend): 自動バックアップが設定されていない環境では設定が消滅する旨の警告を出すように (#15802)
* fix(frontend): 自動バックアップが設定されていない環境ではローカルの設定を削除しないように
* Update Changelog
* fix lint
* fix: 警告を出すだけのみにする
* fix
* apply suggestion
Diffstat (limited to 'packages/frontend/src/pages/settings')
| -rw-r--r-- | packages/frontend/src/pages/settings/index.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/settings/index.vue b/packages/frontend/src/pages/settings/index.vue index 5921a8c812..a11ae2a6f6 100644 --- a/packages/frontend/src/pages/settings/index.vue +++ b/packages/frontend/src/pages/settings/index.vue @@ -177,7 +177,8 @@ const menuDef = computed<SuperMenuDef[]>(() => [{ action: async () => { const { canceled } = await os.confirm({ type: 'warning', - text: i18n.ts.logoutConfirm, + title: i18n.ts.logoutConfirm, + text: i18n.ts.logoutWillClearClientData, }); if (canceled) return; signout(); |