1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-23 14:34:19 +02:00

fix(frontend): 自動バックアップが設定されていない環境では設定が消滅する旨の警告を出すように (#15802)

* fix(frontend): 自動バックアップが設定されていない環境ではローカルの設定を削除しないように

* Update Changelog

* fix lint

* fix: 警告を出すだけのみにする

* fix

* apply suggestion
This commit is contained in:
かっこかり
2025-04-13 16:59:01 +09:00
committed by GitHub
parent 8edf1bc208
commit f7195d54d0
5 changed files with 14 additions and 5 deletions

View File

@@ -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();