Skip to content

Commit

Permalink
4.8.17 test (#3479)
Browse files Browse the repository at this point in the history
* perf: auto save

* perf: auto save

* perf: template code
  • Loading branch information
c121914yu committed Dec 26, 2024
1 parent 80b39b1 commit a778f65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/global/core/app/type.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { FlowNodeTemplateType, StoreNodeItemType } from '../workflow/type/node';
import { AppTemplateTypeEnum, AppTypeEnum } from './constants';
import { AppTypeEnum } from './constants';
import { PermissionTypeEnum } from '../../support/permission/constant';
import {
NodeInputKeyEnum,
Expand Down Expand Up @@ -207,6 +207,6 @@ export type AppTemplateSchemaType = {

export type TemplateTypeSchemaType = {
typeName: string;
typeId: AppTemplateTypeEnum;
typeId: string;
typeOrder: number;
};
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const TemplateMarketModal = ({
const router = useRouter();
const { isPc } = useSystem();

const [currentTag, setCurrentTag] = useState(AppTemplateTypeEnum.recommendation);
const [currentTag, setCurrentTag] = useState<string>(AppTemplateTypeEnum.recommendation);
const [currentAppType, setCurrentAppType] = useState<TemplateAppType>(defaultType);
const [currentSearch, setCurrentSearch] = useState('');

Expand Down

0 comments on commit a778f65

Please sign in to comment.