diff options
Diffstat (limited to 'packages/frontend/src/widgets/WidgetPhotos.vue')
| -rw-r--r-- | packages/frontend/src/widgets/WidgetPhotos.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/frontend/src/widgets/WidgetPhotos.vue b/packages/frontend/src/widgets/WidgetPhotos.vue index c2e3140f84..8c01d3cce9 100644 --- a/packages/frontend/src/widgets/WidgetPhotos.vue +++ b/packages/frontend/src/widgets/WidgetPhotos.vue @@ -24,13 +24,13 @@ SPDX-License-Identifier: AGPL-3.0-only <script lang="ts" setup> import { onUnmounted, ref } from 'vue'; import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget'; -import { GetFormResultType } from '@/scripts/form'; -import { useStream } from '@/stream'; -import { getStaticImageUrl } from '@/scripts/media-proxy'; -import * as os from '@/os'; +import { GetFormResultType } from '@/scripts/form.js'; +import { useStream } from '@/stream.js'; +import { getStaticImageUrl } from '@/scripts/media-proxy.js'; +import * as os from '@/os.js'; import MkContainer from '@/components/MkContainer.vue'; -import { defaultStore } from '@/store'; -import { i18n } from '@/i18n'; +import { defaultStore } from '@/store.js'; +import { i18n } from '@/i18n.js'; const name = 'photos'; |