diff --git a/modules/ui/src/app/pages/testrun/progress.component.ts b/modules/ui/src/app/pages/testrun/progress.component.ts index eb501dcc6..999509ef2 100644 --- a/modules/ui/src/app/pages/testrun/progress.component.ts +++ b/modules/ui/src/app/pages/testrun/progress.component.ts @@ -161,6 +161,6 @@ export class ProgressComponent implements OnInit, OnDestroy { } resultIsEmpty(tests: TestsResponse | undefined) { - this.testrunStore.resultIsEmpty(tests); + return this.testrunStore.resultIsEmpty(tests); } }