src: Make spinners spin

This replaces the `<InProgressIcon>` with animated spinners to indicate that something is happening.
This commit is contained in:
regexowl 2025-01-02 14:54:41 +01:00 committed by Klara Simickova
parent fe0e20319b
commit 5e4f20edf1
2 changed files with 7 additions and 7 deletions

View file

@ -8,13 +8,13 @@ import {
DescriptionListGroup,
DescriptionListTerm,
Popover,
Spinner,
} from '@patternfly/react-core';
import {
CheckCircleIcon,
ExclamationCircleIcon,
ExclamationTriangleIcon,
ExternalLinkAltIcon,
InProgressIcon,
} from '@patternfly/react-icons';
import { CONTENT_URL } from '../../../../constants';
@ -139,7 +139,7 @@ const RepositoriesStatus = ({
} else if (repoStatus === 'Pending') {
return (
<>
<InProgressIcon className="pending" /> {repoStatus}
<Spinner isInline /> {repoStatus}
</>
);
}