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'; } }