diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-09 17:02:46 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-09 17:02:46 +0900 |
| commit | 27e8805dcbddb73571c8d7fea79c852d9697a26b (patch) | |
| tree | df15036b486e20cb40e304a667b0e8314c79b3c3 /packages/frontend/src/components/MkNote.vue | |
| parent | Bump version to 2025.3.2-alpha.1 (diff) | |
| download | sharkey-27e8805dcbddb73571c8d7fea79c852d9697a26b.tar.gz sharkey-27e8805dcbddb73571c8d7fea79c852d9697a26b.tar.bz2 sharkey-27e8805dcbddb73571c8d7fea79c852d9697a26b.zip | |
refactor(frontend): relocate plugin consts
Diffstat (limited to 'packages/frontend/src/components/MkNote.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 0daa917500..f3f8c1ce82 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -206,7 +206,6 @@ import number from '@/filters/number.js'; import * as os from '@/os.js'; import * as sound from '@/utility/sound.js'; import { misskeyApi, misskeyApiGet } from '@/utility/misskey-api.js'; -import { noteViewInterruptors } from '@/store.js'; import { reactionPicker } from '@/utility/reaction-picker.js'; import { extractUrlFromMfm } from '@/utility/extract-url-from-mfm.js'; import { $i } from '@/account.js'; @@ -223,6 +222,7 @@ import { isEnabledUrlPreview } from '@/instance.js'; import { focusPrev, focusNext } from '@/utility/focus.js'; import { getAppearNote } from '@/utility/get-appear-note.js'; import { prefer } from '@/preferences.js'; +import { noteViewInterruptors } from '@/plugin.js'; const props = withDefaults(defineProps<{ note: Misskey.entities.Note; |