Skip to content

Commit

Permalink
fix(theme-shared): correct css class names for confirmation icons
Browse files Browse the repository at this point in the history
related issue: #2537
  • Loading branch information
thediaval committed Jan 10, 2020
1 parent 6b3d743 commit 835a17b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ export class ConfirmationComponent {
get iconClass(): string {
switch (this.data.severity) {
case 'info':
return 'info-circle';
return 'fa-info-circle';
case 'success':
return 'check-circle';
return 'fa-check-circle';
case 'warning':
return 'exclamation-triangle';
return 'fa-exclamation-triangle';
case 'error':
return 'times-circle';
return 'fa-times-circle';
default:
return 'question-circle-o';
return 'fa-question-circle';
}
}

Expand Down

0 comments on commit 835a17b

Please sign in to comment.