diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-11-24 11:18:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-24 11:18:01 +0900 |
| commit | c4f53aba3fcaf998976f579f25b205ea50453a3e (patch) | |
| tree | 221a2fa66128f68fb9406eca414ff01f77c5216c /packages/frontend/src/utility | |
| parent | fix(frontend): リセットボタンでCWがリセットされない問題を... (diff) | |
| download | misskey-c4f53aba3fcaf998976f579f25b205ea50453a3e.tar.gz misskey-c4f53aba3fcaf998976f579f25b205ea50453a3e.tar.bz2 misskey-c4f53aba3fcaf998976f579f25b205ea50453a3e.zip | |
fix(frontend): 一部のシチュエーションで投稿フォームのツアーが表示されない問題を修正 (#16837)
* fix(frontend): 一部のシチュエーションで投稿フォームのツアーが表示されない問題を修正
* Update Changelog
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/utility')
| -rw-r--r-- | packages/frontend/src/utility/tour.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/utility/tour.ts b/packages/frontend/src/utility/tour.ts index 8ab3474ddc..c6bfa35a66 100644 --- a/packages/frontend/src/utility/tour.ts +++ b/packages/frontend/src/utility/tour.ts @@ -3,7 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { computed, ref, shallowRef, watch } from 'vue'; +import { computed, ref, shallowRef, watch, defineAsyncComponent } from 'vue'; import * as os from '@/os.js'; type TourStep = { @@ -26,7 +26,7 @@ export function startTour(steps: TourStep[]) { anchorElementRef.value = step.element; }); - const { dispose } = os.popup(await import('@/components/MkSpot.vue').then(x => x.default), { + const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/MkSpot.vue')), { title: titleRef, description: descriptionRef, anchorElement: anchorElementRef, |