diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-17 22:48:33 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-17 22:48:33 +1300 |
commit | e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf (patch) | |
tree | 3c9fc1d45185ef71f08280d67b1b4c9c61552ce7 /web/app/Application.js | |
parent | 469869d4c01cd5385acee0c84faa226775454e79 (diff) | |
download | trackermap-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.tar.gz trackermap-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.tar.bz2 trackermap-web-e8850343bdb1e5e6a1c366aeacdff1f91bfa5daf.zip |
Add user expiration and device limit
Diffstat (limited to 'web/app/Application.js')
-rw-r--r-- | web/app/Application.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/Application.js b/web/app/Application.js index 702a75a9..6f4cb1dd 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 { |