Skip to content

Commit

Permalink
Change some icons
Browse files Browse the repository at this point in the history
  • Loading branch information
SemaiCZE committed Jan 25, 2018
1 parent 591e2a7 commit c75eff3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ const FailuresListItem = ({ id, createActions, failure }) =>
}
>
<div>
{failure.type === 'broker_reject' && <Icon name="times-rectangle" />}
{failure.type === 'evaluation_failure' && <Icon name="tint" />}
{failure.type === 'loading_failure' && <Icon name="wrench" />}
{failure.type === 'broker_reject' && <Icon name="exchange" />}
{failure.type === 'evaluation_failure' &&
<Icon name="graduation-cap" />}
{failure.type === 'loading_failure' && <Icon name="download" />}
</div>
</OverlayTrigger>
</td>
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Sidebar/Admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Admin = ({
link={USERS_URI}
/>
<MenuItem
icon="fort-awesome"
icon="bomb"
title={
<FormattedMessage
id="app.sidebar.menu.admin.failures"
Expand Down
4 changes: 2 additions & 2 deletions src/pages/SubmissionFailures/SubmissionFailures.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class SubmissionFailures extends Component {
defaultMessage="Submission Failures"
/>
),
iconName: 'fort-awesome'
iconName: 'bomb'
}
]}
>
Expand All @@ -110,7 +110,7 @@ class SubmissionFailures extends Component {
<Button
bsStyle="warning"
className="btn-flat"
bsSize="sm"
bsSize="xs"
onClick={() =>
this.setState({ isOpen: true, activeId: id })}
>
Expand Down

0 comments on commit c75eff3

Please sign in to comment.