src: Make spinners spin
This replaces the `<InProgressIcon>` with animated spinners to indicate that something is happening.
This commit is contained in:
parent
fe0e20319b
commit
5e4f20edf1
2 changed files with 7 additions and 7 deletions
|
|
@ -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}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue