Skip to content

Commit

Permalink
Update import status indicator icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Aug 26, 2020
1 parent bb9e3de commit 71a8eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
color: $euiColorSuccessText;
}

.savedObjectsManagementImportSummary__overwrittenCount {
color: $euiColorWarningText;
}

.savedObjectsManagementImportSummary__errorCount {
color: $euiColorDangerText;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const getStatusIndicator = ({ outcome, errorMessage }: ImportItem) => {
case 'created':
return (
<EuiIconTip
type={'check'}
type={'checkInCircleFilled'}
color={'success'}
content={i18n.translate('savedObjectsManagement.importSummary.createdOutcomeLabel', {
defaultMessage: 'Created',
Expand All @@ -157,7 +157,6 @@ const getStatusIndicator = ({ outcome, errorMessage }: ImportItem) => {
return (
<EuiIconTip
type={'check'}
color={'warning'}
content={i18n.translate('savedObjectsManagement.importSummary.overwrittenOutcomeLabel', {
defaultMessage: 'Overwritten',
})}
Expand All @@ -166,7 +165,7 @@ const getStatusIndicator = ({ outcome, errorMessage }: ImportItem) => {
case 'error':
return (
<EuiIconTip
type={'cross'}
type={'alert'}
color={'danger'}
content={i18n.translate('savedObjectsManagement.importSummary.errorOutcomeLabel', {
defaultMessage: 'Error{message}',
Expand Down

0 comments on commit 71a8eef

Please sign in to comment.