Skip to content

Commit e1fba5a

Browse files
committed
change card artifacts loaders
Signed-off-by: Taj010 <rsheen003@gmail.com>
1 parent 95354f9 commit e1fba5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clients/ui/frontend/src/app/pages/modelCatalog/components/ModelCatalogCardBody.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
List,
99
ListItem,
1010
Popover,
11-
Spinner,
11+
Skeleton,
1212
Stack,
1313
StackItem,
1414
} from '@patternfly/react-core';
@@ -108,7 +108,7 @@ const ModelCatalogCardBody: React.FC<ModelCatalogCardBodyProps> = ({
108108
const isLoading = isValidated && !performanceArtifactsLoaded;
109109

110110
if (isLoading) {
111-
return <Spinner />;
111+
return <Skeleton width="100%" screenreaderText="Loading model artifacts" />;
112112
}
113113

114114
if (performanceArtifactsError && isValidated) {

0 commit comments

Comments
 (0)