This repository was archived by the owner on May 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Expand file tree Collapse file tree 3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -117,10 +117,7 @@ export class ExecutionComponent implements OnInit {
117
117
}
118
118
119
119
hasLog ( ) : boolean {
120
- return (
121
- ( this . execution . taskExecutionStatus === 'COMPLETE' || this . execution . taskExecutionStatus === 'ERROR' ) &&
122
- ! ! this . execution . externalExecutionId
123
- ) ;
120
+ return ! ! this . execution . externalExecutionId ;
124
121
}
125
122
126
123
log ( ) : void {
Original file line number Diff line number Diff line change @@ -147,10 +147,7 @@ export class ExecutionComponent implements OnInit {
147
147
}
148
148
149
149
hasLog ( ) : boolean {
150
- return (
151
- ( this . taskExecution . taskExecutionStatus === 'COMPLETE' || this . taskExecution . taskExecutionStatus === 'ERROR' ) &&
152
- this . taskExecution . externalExecutionId !== ''
153
- ) ;
150
+ return this . taskExecution . externalExecutionId !== '' ;
154
151
}
155
152
156
153
viewLog ( ) : void {
Original file line number Diff line number Diff line change @@ -152,10 +152,7 @@ export class TaskComponent implements OnInit {
152
152
}
153
153
154
154
hasLog ( execution : TaskExecution ) : boolean {
155
- return (
156
- ( execution . taskExecutionStatus === 'COMPLETE' || execution . taskExecutionStatus === 'ERROR' ) &&
157
- execution . externalExecutionId !== ''
158
- ) ;
155
+ return execution . externalExecutionId !== '' ;
159
156
}
160
157
161
158
openLog ( execution : TaskExecution ) : void {
You can’t perform that action at this time.
0 commit comments