Skip to content
This repository has been archived by the owner on May 22, 2020. It is now read-only.

Commit

Permalink
- CHG: Changed password strength colour representation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-raubach committed May 10, 2018
1 parent cf282e7 commit 6d8ef24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ public class UpdatePasswordView extends Composite
break;
case 2:
progressBar.setPercent(50);
progressBar.setType(ProgressBarType.DANGER);
progressBar.setType(ProgressBarType.WARNING);
tooltip.setTitle(I18n.LANG.passwordStrengthTwo());
break;
case 3:
progressBar.setPercent(75);
progressBar.setType(ProgressBarType.WARNING);
progressBar.setType(ProgressBarType.SUCCESS);
tooltip.setTitle(I18n.LANG.passwordStrengthThree());
break;
case 4:
Expand Down

0 comments on commit 6d8ef24

Please sign in to comment.