failed action results are now showing up together with success to make it easier to find
This commit is contained in:
@@ -1906,7 +1906,7 @@ const ParsedAction = (props) => {
|
||||
) : pathdata.type === "list" ? (
|
||||
<FormatListNumberedIcon style={{marginLeft: 9, marginRight: 10, }} />
|
||||
) : (
|
||||
<Circle style={{marginLeft: 9, marginRight: 10, color: coverColor}}/>
|
||||
<CircleIcon style={{marginLeft: 9, marginRight: 10, color: coverColor}}/>
|
||||
);
|
||||
//<ExpandMoreIcon style={iconStyle} />
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user