mirror of
https://github.com/ansible/awx.git
synced 2026-04-06 18:49:21 -02:30
Fix typo after merge conflict
This commit is contained in:
@@ -434,7 +434,7 @@ function JobOutput({
|
|||||||
const firstIndex = fetchedEvents.findIndex(
|
const firstIndex = fetchedEvents.findIndex(
|
||||||
jobEvent => jobEvent.counter === 1
|
jobEvent => jobEvent.counter === 1
|
||||||
);
|
);
|
||||||
if (firstIndex && fetchedResults[firstIndex]?.stdout) {
|
if (firstIndex && fetchedEvents[firstIndex]?.stdout) {
|
||||||
const stdoutLines = fetchedEvents[firstIndex].stdout.split('\r\n');
|
const stdoutLines = fetchedEvents[firstIndex].stdout.split('\r\n');
|
||||||
stdoutLines[0] = tracebackEvent.stdout;
|
stdoutLines[0] = tracebackEvent.stdout;
|
||||||
fetchedEvents[firstIndex].stdout = stdoutLines.join('\r\n');
|
fetchedEvents[firstIndex].stdout = stdoutLines.join('\r\n');
|
||||||
|
|||||||
Reference in New Issue
Block a user