diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
| commit | b0f6c44f36f3173f5d232d1adb02fc09dfdcc003 (patch) | |
| tree | 5ba44e4bdd60bf8dc4d63c4c9bf6b8ba358c51a9 /packages/frontend/src/pages/settings/sounds.sound.vue | |
| parent | feat(frontend): 任意のユーザーリストをタイムラインページ... (diff) | |
| download | misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.gz misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.bz2 misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.zip | |
refactor(frontend): use ESM
Diffstat (limited to 'packages/frontend/src/pages/settings/sounds.sound.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/sounds.sound.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/settings/sounds.sound.vue b/packages/frontend/src/pages/settings/sounds.sound.vue index a5f90f3e21..08a923e104 100644 --- a/packages/frontend/src/pages/settings/sounds.sound.vue +++ b/packages/frontend/src/pages/settings/sounds.sound.vue @@ -25,8 +25,8 @@ import { } from 'vue'; import MkSelect from '@/components/MkSelect.vue'; import MkButton from '@/components/MkButton.vue'; import MkRange from '@/components/MkRange.vue'; -import { i18n } from '@/i18n'; -import { playFile, soundsTypes } from '@/scripts/sound'; +import { i18n } from '@/i18n.js'; +import { playFile, soundsTypes } from '@/scripts/sound.js'; const props = defineProps<{ type: string; |