diff --git a/ui/src/main/webapp/src/app/executions/project-executions.component.html b/ui/src/main/webapp/src/app/executions/project-executions.component.html
index 55dc50657..13d6fd3ed 100644
--- a/ui/src/main/webapp/src/app/executions/project-executions.component.html
+++ b/ui/src/main/webapp/src/app/executions/project-executions.component.html
@@ -16,7 +16,7 @@
Analysis Results
0"
- (reloadRequestEvent)="refreshExecutionList()"
+ (reloadRequestEvent)="refreshExecutionFromRequestEvent()"
(runExecution)="startExecution()"
[executions]="executions"
[activeExecutions]="activeExecutions"
diff --git a/ui/src/main/webapp/src/app/executions/project-executions.component.ts b/ui/src/main/webapp/src/app/executions/project-executions.component.ts
index 3423aa3ae..44c869049 100644
--- a/ui/src/main/webapp/src/app/executions/project-executions.component.ts
+++ b/ui/src/main/webapp/src/app/executions/project-executions.component.ts
@@ -72,6 +72,11 @@ export class ProjectExecutionsComponent extends ExecutionsMonitoringComponent im
}
}
+ refreshExecutionFromRequestEvent() {
+ this.doNotRefreshList = false;
+ this.refreshExecutionList();
+ }
+
refreshExecutionList() {
this._windupService.getProjectExecutions(this.project.id).subscribe(executions => {
this.executions = executions;