summaryrefslogtreecommitdiff
path: root/packages/frontend/src/directives/user-preview.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-03-03 12:29:34 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-03-03 12:29:34 +0900
commit87c6d0cbeef22a902e4b9827d41b450853b0edde (patch)
tree364ac3174c5098b4da73d6d40d4ec1a9f315975d /packages/frontend/src/directives/user-preview.ts
parentfix(client): prevent null reference error (diff)
downloadsharkey-87c6d0cbeef22a902e4b9827d41b450853b0edde.tar.gz
sharkey-87c6d0cbeef22a902e4b9827d41b450853b0edde.tar.bz2
sharkey-87c6d0cbeef22a902e4b9827d41b450853b0edde.zip
:art:
Diffstat (limited to 'packages/frontend/src/directives/user-preview.ts')
-rw-r--r--packages/frontend/src/directives/user-preview.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/directives/user-preview.ts b/packages/frontend/src/directives/user-preview.ts
index ed5f00ca65..2f5936de3d 100644
--- a/packages/frontend/src/directives/user-preview.ts
+++ b/packages/frontend/src/directives/user-preview.ts
@@ -24,7 +24,7 @@ export class UserPreview {
const showing = ref(true);
- popup(defineAsyncComponent(() => import('@/components/MkUserPreview.vue')), {
+ popup(defineAsyncComponent(() => import('@/components/MkUserPopup.vue')), {
showing,
q: this.user,
source: this.el,