ワードミュート設定時にリロードを尋ねるように

This commit is contained in:
tai-cha 2025-05-12 09:23:04 +09:00
parent 1dbb7c5c96
commit 832def9d3b
No known key found for this signature in database
GPG Key ID: 1D5EE39F870DC283
1 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,7 @@ import MkTextarea from '@/components/MkTextarea.vue';
import MkButton from '@/components/MkButton.vue';
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
import { reloadAsk } from '@/utility/reload-ask';
const props = defineProps<{
muted: (string[] | string)[];
@ -88,5 +89,7 @@ async function save() {
emit('save', parsed);
changed.value = false;
reloadAsk({ reason: i18n.ts.reloadToApplySetting, unison: true });
}
</script>