We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7417876 commit 6b91c08Copy full SHA for 6b91c08
clients/ui/frontend/src/app/pages/modelCatalog/components/ModelCatalogCardBody.tsx
@@ -8,7 +8,7 @@ import {
8
List,
9
ListItem,
10
Popover,
11
- Spinner,
+ Skeleton,
12
Stack,
13
StackItem,
14
} from '@patternfly/react-core';
@@ -108,7 +108,7 @@ const ModelCatalogCardBody: React.FC<ModelCatalogCardBodyProps> = ({
108
const isLoading = isValidated && !performanceArtifactsLoaded;
109
110
if (isLoading) {
111
- return <Spinner />;
+ return <Skeleton width="100%" screenreaderText="Loading model artifacts" />;
112
}
113
114
if (performanceArtifactsError && isValidated) {
0 commit comments