aboutsummaryrefslogtreecommitdiff
path: root/web/app/Application.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-11-17 22:48:33 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-11-17 22:48:33 +1300
commite8850343bdb1e5e6a1c366aeacdff1f91bfa5daf (patch)
tree3c9fc1d45185ef71f08280d67b1b4c9c61552ce7 /web/app/Application.js
parent469869d4c01cd5385acee0c84faa226775454e79 (diff)
downloadetbsa-traccar-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.tar.gz
etbsa-traccar-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.tar.bz2
etbsa-traccar-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.zip
Add user expiration and device limit
Diffstat (limited to 'web/app/Application.js')
-rw-r--r--web/app/Application.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/Application.js b/web/app/Application.js
index 702a75a..6f4cb1d 100644
--- a/web/app/Application.js
+++ b/web/app/Application.js
@@ -130,7 +130,7 @@ Ext.define('Traccar.Application', {
if (Ext.isString(response)) {
Ext.Msg.alert(Strings.errorTitle, response);
} else if (response.responseText) {
- Ext.Msg.alert(response.responseText);
+ Ext.Msg.alert(Strings.errorTitle, response.responseText);
} else if (response.statusText) {
Ext.Msg.alert(Strings.errorTitle, response.statusText);
} else {