Skip to content

Commit

Permalink
fix(JGIVEN-26): PENDING is not a valid step status
Browse files Browse the repository at this point in the history
Signed-off-by: l-1squared <30831153+l-1squared@users.noreply.github.com>
  • Loading branch information
l-1squared committed Nov 26, 2024
1 parent 3068a67 commit d22bf76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legacy/src/js/service/dataService.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function DataService () {

function getPendingScenarios () {
return getScenariosWhere(function (x) {
return x.executionStatus === "PENDING"
return x.executionStatus !== "SUCCESS" && x.executionStatus !== "FAILED" && x.executionStatus !== "ABORTED";
});
}

Expand Down

0 comments on commit d22bf76

Please sign in to comment.