From 8fefa8ae2dbef10e33a739f8de525580c3c3fbb7 Mon Sep 17 00:00:00 2001 From: reggie Date: Sat, 23 Dec 2023 11:10:47 +0200 Subject: [PATCH] preparation for resource tree changes Signed-off-by: reggie --- ui/src/app/shared/services/applications-service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/app/shared/services/applications-service.ts b/ui/src/app/shared/services/applications-service.ts index 11b985f621a2e..a4892d323fa1e 100644 --- a/ui/src/app/shared/services/applications-service.ts +++ b/ui/src/app/shared/services/applications-service.ts @@ -557,6 +557,9 @@ export class ApplicationsService { }, data ); + /* REMOVE ME WHEN FIXED ON BACKEND SIDE*/ + (data as models.ApplicationSet).status.resources[0].kind = 'Application'; + (data as models.ApplicationSet).status.resources[0].group = 'argoproj.io'; return data as models.ApplicationSet; } }