1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 07:43:16 +00:00

fix lint issues with ===

This commit is contained in:
Kyle Spearrin
2016-09-17 23:00:05 -04:00
parent 2f363c3e3a
commit e1a6bb1ddc
2 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@
var pushError = true;
for (var i = 0; i < form.$errors.length; i++) {
if (form.$errors[i] == errorMessage) {
if (form.$errors[i] === errorMessage) {
pushError = false;
break;
}