diff options
Diffstat (limited to 'packages/frontend/src/widgets/widget.ts')
| -rw-r--r-- | packages/frontend/src/widgets/widget.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/widgets/widget.ts b/packages/frontend/src/widgets/widget.ts index ecb5c0c92d..9c7632fc9b 100644 --- a/packages/frontend/src/widgets/widget.ts +++ b/packages/frontend/src/widgets/widget.ts @@ -5,9 +5,9 @@ import { reactive, watch } from 'vue'; import { throttle } from 'throttle-debounce'; -import { Form, GetFormResultType } from '@/scripts/form'; -import * as os from '@/os'; -import { deepClone } from '@/scripts/clone'; +import { Form, GetFormResultType } from '@/scripts/form.js'; +import * as os from '@/os.js'; +import { deepClone } from '@/scripts/clone.js'; export type Widget<P extends Record<string, unknown>> = { id: string; |