From 8743ba6a2fef8e34344de4282104afb033472e18 Mon Sep 17 00:00:00 2001 From: Manaswini Das Date: Tue, 12 Nov 2024 02:35:07 +0530 Subject: [PATCH] Model registry settings table icon updates (#3461) --- .../ModelRegistryTableRowStatus.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/frontend/src/pages/modelRegistrySettings/ModelRegistryTableRowStatus.tsx b/frontend/src/pages/modelRegistrySettings/ModelRegistryTableRowStatus.tsx index 29e555163f..e93a3d7440 100644 --- a/frontend/src/pages/modelRegistrySettings/ModelRegistryTableRowStatus.tsx +++ b/frontend/src/pages/modelRegistrySettings/ModelRegistryTableRowStatus.tsx @@ -3,7 +3,6 @@ import React from 'react'; import { Label, Popover, Stack, StackItem } from '@patternfly/react-core'; import { CheckCircleIcon, - DegradedIcon, ExclamationCircleIcon, ExclamationTriangleIcon, InProgressIcon, @@ -71,8 +70,8 @@ export const ModelRegistryTableRowStatus: React.FC message.includes('ContainerCreating')) ) { statusLabel = ModelRegistryStatusLabel.Unavailable; - icon = ; - color = 'red'; + icon = ; + color = 'gold'; } // Available else if (availableCondition?.status === ConditionStatus.True) { @@ -83,14 +82,14 @@ export const ModelRegistryTableRowStatus: React.FC; + icon = ; color = 'blue'; } // Degrading else if (degradedCondition?.status === ConditionStatus.True) { statusLabel = ModelRegistryStatusLabel.Degrading; - icon = ; - color = 'gold'; + icon = ; + color = 'grey'; popoverTitle = 'Service is degrading'; } }