Skip to content

Commit

Permalink
[ML] Changing job message info icon (elastic#51904)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Nov 29, 2019
1 parent 0ebc12e commit bb7c9ed
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 bb7c9ed

Please sign in to comment.