アカウント初期設定ウィザード完了時にページをリロードするように
This commit is contained in:
parent
35f11eb4eb
commit
fc9fde65dc
|
@ -27,6 +27,7 @@
|
|||
- 계정 초기 설정 마법사에 나중에 버튼 추가
|
||||
- 계정 초기 설정 마법사에 흐림 효과 설정 추가
|
||||
- 계정 초기 설정 마법사에 MFM 및 움직이는 이미지 설정 추가
|
||||
- 계정 초기 설정 마법사를 완료하면 페이지를 새로 고치도록 (일부 옵션이 페이지를 새로 고쳐야만 반영되므로)
|
||||
- Fix: 위젯 편집 시 헤더 이외의 영역을 눌렀을 때 위젯 설정이 뜨는 문제
|
||||
- Fix: 위젯 편집 종료 버튼이 여러 개 있는 문제
|
||||
- Fix: 일부 옵션 변경 시 페이지를 새로 고치도록
|
||||
|
|
|
@ -157,6 +157,7 @@ import { host } from '@/config';
|
|||
import MkPushNotificationAllowButton from '@/components/MkPushNotificationAllowButton.vue';
|
||||
import { defaultStore } from '@/store';
|
||||
import * as os from '@/os';
|
||||
import { unisonReload } from "@/scripts/unison-reload";
|
||||
|
||||
const emit = defineEmits<{
|
||||
(ev: 'closed'): void;
|
||||
|
@ -181,6 +182,7 @@ async function close(skip: boolean) {
|
|||
|
||||
dialog.value.close();
|
||||
defaultStore.set('accountSetupWizard', -1);
|
||||
unisonReload();
|
||||
}
|
||||
|
||||
async function later(later: boolean) {
|
||||
|
|
Loading…
Reference in a new issue