Skip to content
Snippets Groups Projects

Catch up with Main

Merged Charlotte Hausman requested to merge conflict_check into 2.8.2-DEVELOPMENT
@@ -152,14 +152,15 @@ export class RequestOperationsComponent implements OnInit {
}
/**
* The request is closable if it's failed in an error state.
* The request is closable if it's failed or in an error state.
*/
isRequestCloseable(): boolean {
return (
this.selectedVersion &&
this.selectedVersion.state === 'Error' &&
this.selectedVersion.current_execution.state_name === 'Error'
)
(this.selectedVersion.state === 'Error' || this.selectedVersion.state === 'Failed') &&
(this.selectedVersion.current_execution.state_name === 'Error' || this.selectedVersion.current_execution.state_name === 'Failed')
&& !this.capabilityRequest.sealed
);
}
public loadDefaultCC() {
Loading