aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-04-14 22:54:28 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2021-04-14 22:54:28 -0700
commit2de99a83b3c45bc15faed44a1b248d56698b292b (patch)
tree10da0b132bf57b32560e631a7292f0bbac1619c4 /web
parent67230fe32f1c18517c334aa2293841c4a531b45e (diff)
downloadetbsa-traccar-web-2de99a83b3c45bc15faed44a1b248d56698b292b.tar.gz
etbsa-traccar-web-2de99a83b3c45bc15faed44a1b248d56698b292b.tar.bz2
etbsa-traccar-web-2de99a83b3c45bc15faed44a1b248d56698b292b.zip
Fix style issues
Diffstat (limited to 'web')
-rw-r--r--web/app/controller/Root.js2
-rw-r--r--web/app/view/dialog/LoginController.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js
index c16fd37..65b56fa 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 4727030..ce60a55 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',