Skip to content
Snippets Groups Projects
Verified Commit f9e913a8 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Another uglifier fix

parent 0c67cdb0
No related branches found
No related tags found
No related merge requests found
Pipeline #84714 passed
......@@ -18,8 +18,8 @@ function testConnection(item) {
success: function() {
$('#test_connection_button').attr('class', 'btn btn-success').attr('title', '');
},
error: function({ statusText }) {
$('#test_connection_button').attr('class', 'btn btn-warning').attr('title', statusText.toString());
error: function(result) {
$('#test_connection_button').attr('class', 'btn btn-warning').attr('title', result.toString());
},
complete: function() {
// $('#test_connection_indicator').hide();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment