1
0

fix admin.js (2)

This commit is contained in:
Mike Schwörer 2020-01-20 21:17:14 +01:00
parent c2127bf6ae
commit 469066590f
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF

View File

@ -158,7 +158,8 @@ function refreshConsistencyDisplayParallel()
$(apibutton).addClass('consistency_result_fin');
$(apibutton).text(json.message);
$(apibutton).attr('title', json.long);
//$(apibutton).attr('title', json.long);
outdiv.text(json.long);
})
.fail((xhr, status, err) =>
{
@ -167,7 +168,9 @@ function refreshConsistencyDisplayParallel()
$(apibutton).addClass('consistency_result_err');
$(apibutton).addClass('consistency_result_fin');
$(apibutton).text(err);
//$(apibutton).attr('title', json.long);
outdiv.text(err);
});
}
}