summaryrefslogtreecommitdiff
path: root/src/client/scripts/reaction-picker.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-03-23 17:30:14 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-03-23 17:30:14 +0900
commitd6e23b803b10a471bb5b1054b357c70a16e8f6da (patch)
tree111c870777d931cc56b5e34553e1b286bb2ba78c /src/client/scripts/reaction-picker.ts
parentrefactor(build): gulpを経由しないでTypeScriptのビルドを行うよ... (diff)
downloadmisskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.gz
misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.bz2
misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.zip
refactor: Tweak path alias of client
Diffstat (limited to 'src/client/scripts/reaction-picker.ts')
-rw-r--r--src/client/scripts/reaction-picker.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/scripts/reaction-picker.ts b/src/client/scripts/reaction-picker.ts
index e923326ece..38699c0979 100644
--- a/src/client/scripts/reaction-picker.ts
+++ b/src/client/scripts/reaction-picker.ts
@@ -1,5 +1,5 @@
import { Ref, ref } from 'vue';
-import { popup } from '@/os';
+import { popup } from '@client/os';
class ReactionPicker {
private src: Ref<HTMLElement | null> = ref(null);
@@ -12,7 +12,7 @@ class ReactionPicker {
}
public async init() {
- await popup(import('@/components/emoji-picker-dialog.vue'), {
+ await popup(import('@client/components/emoji-picker-dialog.vue'), {
src: this.src,
asReactionPicker: true,
manualShowing: this.manualShowing