diff --git a/inc/icinga.js b/inc/icinga.js
index 1eeee6e..a696002 100644
--- a/inc/icinga.js
+++ b/inc/icinga.js
@@ -407,9 +407,10 @@
}
$('#popup-tab-overview-downs').append('
' +
- ' Error Rescheduling Check ('+res.status+') - '+JSON.stringify(res)+'' +
+ ' Error Rescheduling Check ' +
' ' +
'
');
+ $('#popup-tab-overview-downs .alert-error-info').text('('+parseInt(res.status)+') '+JSON.stringify(res));
}
});
});
@@ -499,9 +500,10 @@
}
$('#ack-alert').show().append('' +
- ' Error Problem Acknowledgement ('+res.status+') - '+JSON.stringify(res)+'' +
+ ' Error Problem Acknowledgement ' +
' ' +
'
');
+ $('#ack-alert .alert-error-info').text('('+parseInt(res.status)+') '+JSON.stringify(res));
}
});
});