summaryrefslogtreecommitdiff
path: root/packages/client/src/os.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-09-06 18:21:49 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-09-06 18:21:49 +0900
commita9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b (patch)
treede951d9242addd6195c20c23ce6cdf853884760f /packages/client/src/os.ts
parentrefactor(client): use setup syntax (diff)
downloadmisskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.gz
misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.bz2
misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.zip
refactor(client): refactor file name and directory structure
Diffstat (limited to 'packages/client/src/os.ts')
-rw-r--r--packages/client/src/os.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts
index e014eb529e..515fc47819 100644
--- a/packages/client/src/os.ts
+++ b/packages/client/src/os.ts
@@ -514,7 +514,7 @@ export function popupMenu(items: MenuItem[] | Ref<MenuItem[]>, src?: HTMLElement
}) {
return new Promise((resolve, reject) => {
let dispose;
- popup(defineAsyncComponent(() => import('@/components/ui/popup-menu.vue')), {
+ popup(defineAsyncComponent(() => import('@/components/MkPopupMenu.vue')), {
items,
src,
width: options?.width,
@@ -535,7 +535,7 @@ export function contextMenu(items: MenuItem[] | Ref<MenuItem[]>, ev: MouseEvent)
ev.preventDefault();
return new Promise((resolve, reject) => {
let dispose;
- popup(defineAsyncComponent(() => import('@/components/ui/context-menu.vue')), {
+ popup(defineAsyncComponent(() => import('@/components/MkContextMenu.vue')), {
items,
ev,
}, {