diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-01 10:44:45 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-01 10:44:45 +0900 |
| commit | f4167ae7f1df7c2cd4cf264fc4d79d51b8c51133 (patch) | |
| tree | 9f87a9ee76c82176daa4e81f1b117e90ec933f52 /packages/frontend/src/pages/settings | |
| parent | fix(frontend): remove unused text (diff) | |
| download | misskey-f4167ae7f1df7c2cd4cf264fc4d79d51b8c51133.tar.gz misskey-f4167ae7f1df7c2cd4cf264fc4d79d51b8c51133.tar.bz2 misskey-f4167ae7f1df7c2cd4cf264fc4d79d51b8c51133.zip | |
enhance(frontend): 非同期的なコンポーネントの読み込み時のハンドリングを強化
Diffstat (limited to 'packages/frontend/src/pages/settings')
| -rw-r--r-- | packages/frontend/src/pages/settings/2fa.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/settings/avatar-decoration.vue | 4 | ||||
| -rw-r--r-- | packages/frontend/src/pages/settings/connect.vue | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/packages/frontend/src/pages/settings/2fa.vue b/packages/frontend/src/pages/settings/2fa.vue index f47ffc984e..2f639cd090 100644 --- a/packages/frontend/src/pages/settings/2fa.vue +++ b/packages/frontend/src/pages/settings/2fa.vue @@ -117,7 +117,7 @@ async function registerTOTP(): Promise<void> { token: auth.result.token, }); - const { dispose } = os.popup(defineAsyncComponent(() => import('./2fa.qrdialog.vue')), { + const { dispose } = await os.popupAsyncWithDialog(import('./2fa.qrdialog.vue').then(x => x.default), { twoFactorData, }, { closed: () => dispose(), diff --git a/packages/frontend/src/pages/settings/avatar-decoration.vue b/packages/frontend/src/pages/settings/avatar-decoration.vue index 14c3a03d2b..c58cd57c65 100644 --- a/packages/frontend/src/pages/settings/avatar-decoration.vue +++ b/packages/frontend/src/pages/settings/avatar-decoration.vue @@ -68,8 +68,8 @@ misskeyApi('get-avatar-decorations').then(_avatarDecorations => { loading.value = false; }); -function openDecoration(avatarDecoration, index?: number) { - const { dispose } = os.popup(defineAsyncComponent(() => import('./avatar-decoration.dialog.vue')), { +async function openDecoration(avatarDecoration, index?: number) { + const { dispose } = await os.popupAsyncWithDialog(import('./avatar-decoration.dialog.vue').then(x => x.default), { decoration: avatarDecoration, usingIndex: index, }, { diff --git a/packages/frontend/src/pages/settings/connect.vue b/packages/frontend/src/pages/settings/connect.vue index 280ee546dc..959442d25f 100644 --- a/packages/frontend/src/pages/settings/connect.vue +++ b/packages/frontend/src/pages/settings/connect.vue @@ -81,8 +81,8 @@ const pagination = { noPaging: true, }; -function generateToken() { - const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/MkTokenGenerateWindow.vue')), {}, { +async function generateToken() { + const { dispose } = await os.popupAsyncWithDialog(import('@/components/MkTokenGenerateWindow.vue').then(x => x.default), {}, { done: async result => { const { name, permissions } = result; const { token } = await misskeyApi('miauth/gen-token', { |