Skip to content

Commit

Permalink
[ML] Changing job message info icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Nov 29, 2019
1 parent 62baeeb commit d664301
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 d664301

Please sign in to comment.