This commit is contained in:
archer
2023-08-14 10:29:52 +08:00
parent d4d9e1fe65
commit c5fd5706a1
21 changed files with 1819 additions and 23 deletions

View File

@@ -21,7 +21,7 @@ type Props = {
const NodeCard = ({
children,
logo = '/icon/logo.png',
logo = '/icon/logo.svg',
name = '未知模块',
description,
minW = '300px',

View File

@@ -39,7 +39,7 @@ const CreateModal = ({ onClose, onSuccess }: { onClose: () => void; onSuccess: (
const { isPc } = useGlobalStore();
const { register, setValue, getValues, handleSubmit } = useForm<FormType>({
defaultValues: {
avatar: '/icon/logo.png',
avatar: '/icon/logo.svg',
name: '',
templateId: appTemplates[0].id
}