failed action results are now showing up together with success to make it easier to find

This commit is contained in:
frikky
2022-03-27 20:05:56 +02:00
parent 3d5e02d8da
commit 81183d8404
4 changed files with 56 additions and 26 deletions
+3 -3
View File
@@ -11978,13 +11978,13 @@ const parsedExecutionArgument = () => {
executionData.results.length > 1 &&
executionData.results.find(
(result) =>
result.status === "SKIPPED" || result.status === "FAILURE"
result.status === "SKIPPED"
) ? (
<FormControlLabel
style={{ color: "white", marginBottom: 10 }}
label={
<div style={{ color: "white" }}>
Show failed / skipped actions
Show skipped actions
</div>
}
control={
@@ -12024,7 +12024,7 @@ const parsedExecutionArgument = () => {
if (
executionData.results.length !== 1 &&
!showSkippedActions &&
(data.status === "SKIPPED" || data.status === "FAILURE")
(data.status === "SKIPPED")
) {
return null;
}