Fix cluster service page.

This commit is contained in:
2025-10-13 12:23:21 +00:00
parent 24965d2b88
commit f1a01f5ba4
2 changed files with 17 additions and 8 deletions

View File

@@ -2,8 +2,9 @@ export interface Service {
name: string;
description: string;
version?: string;
status?: ServiceStatus;
status?: ServiceStatus | string; // Can be either an object or a string like 'deployed', 'not-deployed'
deployed?: boolean;
namespace?: string;
}
export interface ServiceStatus {