Skip to content

Commit cd336ea

Browse files
static test failure fixed
1 parent 101aa44 commit cd336ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Customer/view/frontend/web/js/show-password.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ define([
4242
var passwordField = this.options.passwordSelector;
4343

4444
$(passwordField).attr('type',
45-
$(passwordField).attr('type') === this.options.passwordInputType
46-
? this.options.textInputType : this.options.passwordInputType
45+
$(passwordField).attr('type') === this.options.passwordInputType ?
46+
this.options.textInputType : this.options.passwordInputType
4747
);
4848
}
4949
});

0 commit comments

Comments
 (0)