Skip to content

Commit

Permalink
[ML] Changing job message info icon (elastic#51904) (elastic#52258)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Dec 5, 2019
1 parent 53e1438 commit 8a89107
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export const JobIcon: FC<Props> = ({ message, showTooltip = false }) => {
}

let color = 'primary';
const icon = 'alert';
let icon = 'alert';

if (message.level === INFO) {
color = 'primary';
icon = 'iInCircle';
} else if (message.level === WARNING) {
color = 'warning';
} else if (message.level === ERROR) {
Expand Down

0 comments on commit 8a89107

Please sign in to comment.