diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-09-06 18:21:49 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-09-06 18:21:49 +0900 |
| commit | a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b (patch) | |
| tree | de951d9242addd6195c20c23ce6cdf853884760f /packages/client/src/directives | |
| parent | refactor(client): use setup syntax (diff) | |
| download | misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.gz misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.bz2 misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.zip | |
refactor(client): refactor file name and directory structure
Diffstat (limited to 'packages/client/src/directives')
| -rw-r--r-- | packages/client/src/directives/tooltip.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/directives/tooltip.ts b/packages/client/src/directives/tooltip.ts index 8b68771cad..5d13497b5f 100644 --- a/packages/client/src/directives/tooltip.ts +++ b/packages/client/src/directives/tooltip.ts @@ -46,7 +46,7 @@ export default { if (self.text == null) return; const showing = ref(true); - popup(defineAsyncComponent(() => import('@/components/ui/tooltip.vue')), { + popup(defineAsyncComponent(() => import('@/components/MkTooltip.vue')), { showing, text: self.text, asMfm: binding.modifiers.mfm, |