diff --git a/src/Components/ImagesTable/ImageBuildStatus.js b/src/Components/ImagesTable/ImageBuildStatus.js index 6add77ce..ccc1b03f 100644 --- a/src/Components/ImagesTable/ImageBuildStatus.js +++ b/src/Components/ImagesTable/ImageBuildStatus.js @@ -1,8 +1,8 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { Flex, Spinner } from '@patternfly/react-core'; -import { CheckCircleIcon, PendingIcon, ExclamationCircleIcon } from '@patternfly/react-icons'; +import { Flex } from '@patternfly/react-core'; +import { CheckCircleIcon, PendingIcon, ExclamationCircleIcon, InProgressIcon } from '@patternfly/react-icons'; import './ImageBuildStatus.scss'; @@ -29,49 +29,25 @@ const ImageBuildStatus = (props) => { // Keep "running" for backward compatibility running: [ { - icon: , + icon: , text: 'Image build in progress' - }, - { - icon: , - text: 'Upload, Cloud registration pending' } ], building: [ { - icon: , + icon: , text: 'Image build in progress' - }, - { - icon: , - text: 'Upload, Cloud registration pending' } ], uploading: [ { - icon: , - text: 'Image build finished' - }, - { - icon: , + icon: , text: 'Image upload in progress' - }, - { - icon: , - text: 'Cloud registration pending' } ], registering: [ { - icon: , - text: 'Image build finished' - }, - { - icon: , - text: 'Image upload finished' - }, - { - icon: , + icon: , text: 'Cloud registration in progress' } ] diff --git a/src/Components/ImagesTable/ImageBuildStatus.scss b/src/Components/ImagesTable/ImageBuildStatus.scss index 1bf099e2..1b725994 100644 --- a/src/Components/ImagesTable/ImageBuildStatus.scss +++ b/src/Components/ImagesTable/ImageBuildStatus.scss @@ -4,3 +4,6 @@ .success { color: var(--pf-global--success-color--100); } +.pending { + color: var(--pf-global--info-color--100); +}