removed redundant "Status:"

This commit is contained in:
CaCO3
2022-12-14 22:33:16 +01:00
parent 2d89326362
commit 6c65b31fff

View File

@@ -122,7 +122,6 @@ function refresh() {
xhttp.onreadystatechange = function() { xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) { if (this.readyState == 4 && this.status == 200) {
var _rsp = xhttp.responseText; var _rsp = xhttp.responseText;
_rsp = "Status: " + _rsp;
$('#statusflow').html("Status: " + _rsp); $('#statusflow').html("Status: " + _rsp);
} }
} }