refactor(editor): Stop expecting null execution status (no-changelog) (#9672)
This commit is contained in:
@@ -56,7 +56,7 @@ export function useExecutionHelpers() {
|
||||
|
||||
function isExecutionRetriable(execution: ExecutionSummary): boolean {
|
||||
return (
|
||||
['crashed', 'error'].includes(execution.status ?? '') &&
|
||||
['crashed', 'error'].includes(execution.status) &&
|
||||
!execution.retryOf &&
|
||||
!execution.retrySuccessId
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user