فهرست منبع

add created at field

Alexander Belanger 4 سال پیش
والد
کامیت
992025bdaf

+ 1 - 0
dashboard/src/components/ProvisionerStatus.tsx

@@ -13,6 +13,7 @@ export interface TFModule {
   id: number
   kind: string
   status: string
+  created_at: string
   global_errors?: TFResourceError[]
   // optional resources, if not created
   resources?: TFResource[]

+ 1 - 0
dashboard/src/main/home/onboarding/steps/ProvisionResources/forms/SharedStatus.tsx

@@ -178,6 +178,7 @@ export const SharedStatus: React.FC<{
           id: infra.id,
           kind: infra.kind,
           status: infra.status,
+          created_at: infra.created_at,
         };
 
         if (infra?.status != "created" && infra?.status != "destroyed") {