From 5fc2bb5eb662b1039ec43962e21a29cb0e51167d Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Sun, 7 Apr 2024 13:19:57 +0100 Subject: [PATCH] fix: broken assets --- .../js/src/common/components/UploadImageButton.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/framework/core/js/src/common/components/UploadImageButton.tsx b/framework/core/js/src/common/components/UploadImageButton.tsx index f1e4ab452..4a55db076 100644 --- a/framework/core/js/src/common/components/UploadImageButton.tsx +++ b/framework/core/js/src/common/components/UploadImageButton.tsx @@ -1,9 +1,9 @@ -import app from '../../admin/app'; -import Button from '../../common/components/Button'; -import type { IButtonAttrs } from '../../common/components/Button'; -import classList from '../../common/utils/classList'; +import app from '../app'; +import Button from './Button'; +import type { IButtonAttrs } from './Button'; +import classList from '../utils/classList'; import type Mithril from 'mithril'; -import Component from '../../common/Component'; +import Component from '../Component'; export interface IUploadImageButtonAttrs extends IButtonAttrs { name: string;