mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
[ui] Don't double-entity encode on event stdout (#12950)
- stdout output on events was being double HTML entity encoded meaning that all output with < and > was shown as literal "<" and ">" Signed-off-by: Rick Elrod <rick@elrod.me>
This commit is contained in:
parent
ea51e137eb
commit
1b46805373
@ -79,7 +79,7 @@ function HostEventModal({ onClose, hostEvent = {}, isOpen = false }) {
|
||||
|
||||
const jsonObj = processCodeEditorValue(hostEvent?.event_data?.res);
|
||||
const stdErr = hostEvent?.event_data?.res?.stderr;
|
||||
const stdOut = processCodeEditorValue(getStdOutValue(hostEvent));
|
||||
const stdOut = getStdOutValue(hostEvent);
|
||||
|
||||
return (
|
||||
<Modal
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user