chore: show existing when add file

This commit is contained in:
jialin
2025-10-23 11:52:49 +08:00
parent cc0580301e
commit a815e71bfe
25 changed files with 256 additions and 97 deletions
+7 -7
View File
@@ -1,11 +1,11 @@
import { PageActionType, StatusType } from './types';
import { StatusType } from './types';
export const PageAction: Record<string, PageActionType> = {
CREATE: 'create',
UPDATE: 'update',
VIEW: 'view',
EDIT: 'edit'
};
export enum PageAction {
CREATE = 'create',
UPDATE = 'update',
VIEW = 'view',
EDIT = 'edit'
}
export const StatusColorMap: Record<
StatusType,