diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-04-14 22:54:28 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-04-14 22:54:28 -0700 |
commit | 2de99a83b3c45bc15faed44a1b248d56698b292b (patch) | |
tree | 10da0b132bf57b32560e631a7292f0bbac1619c4 /web | |
parent | 67230fe32f1c18517c334aa2293841c4a531b45e (diff) | |
download | trackermap-web-2de99a83b3c45bc15faed44a1b248d56698b292b.tar.gz trackermap-web-2de99a83b3c45bc15faed44a1b248d56698b292b.tar.bz2 trackermap-web-2de99a83b3c45bc15faed44a1b248d56698b292b.zip |
Fix style issues
Diffstat (limited to 'web')
-rw-r--r-- | web/app/controller/Root.js | 2 | ||||
-rw-r--r-- | web/app/view/dialog/LoginController.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index c16fd37a..65b56fa6 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -123,7 +123,7 @@ Ext.define('Traccar.controller.Root', { if (passwordReset) { dialog = Ext.Msg.prompt(Strings.loginReset, Strings.userPassword, function (btn, text) { dialog.textField.inputEl.dom.type = 'text'; - if (btn == 'ok') { + if (btn === 'ok') { Ext.Ajax.request({ scope: this, method: 'POST', diff --git a/web/app/view/dialog/LoginController.js b/web/app/view/dialog/LoginController.js index 47270309..ce60a550 100644 --- a/web/app/view/dialog/LoginController.js +++ b/web/app/view/dialog/LoginController.js @@ -117,7 +117,7 @@ Ext.define('Traccar.view.dialog.LoginController', { onResetClick: function () { Ext.Msg.prompt(Strings.loginReset, Strings.userEmail, function (btn, text) { - if (btn == 'ok') { + if (btn === 'ok') { Ext.Ajax.request({ scope: this, method: 'POST', |