Skip to content

Commit

Permalink
bootstrap warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ottenhoff committed Apr 8, 2024
1 parent 603f263 commit 379fd5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ protected Component newMessageDisplayComponent(final String id, final FeedbackMe
message.getLevel() == FeedbackMessage.DEBUG ||
message.getLevel() == FeedbackMessage.FATAL ||
message.getLevel() == FeedbackMessage.WARNING){
add(AttributeModifier.replace("class", "attendanceAlertMessage"));
add(AttributeModifier.replace("class", "attendanceAlertMessage alert alert-warning"));
} else if(message.getLevel() == FeedbackMessage.INFO ||
message.getLevel() == FeedbackMessage.SUCCESS){
add(AttributeModifier.replace("class", "attendanceMessageSuccess"));
add(AttributeModifier.replace("class", "attendanceMessageSuccess alert alert-success"));
}

return newMessageDisplayComponent;
Expand Down

0 comments on commit 379fd5f

Please sign in to comment.