We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 311ecb4 commit 0c427d6Copy full SHA for 0c427d6
log_outgoing_requests/static/log_outgoing_requests/js/admin.js
@@ -12,13 +12,13 @@ document.addEventListener("DOMContentLoaded", function () {
12
try {
13
outputValue = JSON.stringify(JSON.parse(responseBody), null, 3);
14
} catch (error) {
15
- outputValue = "<br><span style='color: red;'>Invalid JSON format</span>";
+ outputValue = "Invalid JSON format";
16
}
17
} else if (contentType.includes('xml')) {
18
19
outputValue = prettifyXml(responseBody);
20
} catch (xmlError) {
21
- outputValue = "<br><span style='color: red;'>Invalid XML format</span>";
+ outputValue = "Invalid XML format";
22
23
24
textArea.value = outputValue;
0 commit comments