ui(admin): fix egg creation

This commit is contained in:
Matthew Penner 2023-09-28 13:48:21 -06:00
parent 6f5fb09c13
commit 3721b2007b
No known key found for this signature in database
9 changed files with 1224 additions and 1142 deletions

View file

@ -43,15 +43,15 @@ export interface Egg {
configFiles: Record<string, any> | null;
configStartup: Record<string, any> | null;
configStop: string | null;
configFrom: number | null;
startup: string;
scriptContainer: string;
copyScriptFrom: number | null;
scriptEntry: string;
scriptIsPrivileged: boolean;
scriptInstall: string | null;
createdAt: Date;
updatedAt: Date;
// configFrom: number | null;
// copyScriptFrom: number | null;
// scriptIsPrivileged: boolean;
relations: {
nest?: Nest;