From 3f2ce0f6b1b110144264e0285e4414fe5d822376 Mon Sep 17 00:00:00 2001 From: Volha Mardvilka Date: Tue, 1 Apr 2025 13:36:54 +0000 Subject: [PATCH] 407724424: (fix) changes for risk profile message to be displayed on all pages --- modules/ui/src/app/app.component.html | 3 +-- modules/ui/src/app/app.component.ts | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/ui/src/app/app.component.html b/modules/ui/src/app/app.component.html index b1561c516..05aa65748 100644 --- a/modules/ui/src/app/app.component.html +++ b/modules/ui/src/app/app.component.html @@ -272,8 +272,7 @@

Testrun

hasConnectionSettings === true && hasDevices === true && hasRiskProfiles === false && - systemStatus === StatusOfTestrun.InProgress && - isRiskAssessmentRoute === false + systemStatus === StatusOfTestrun.InProgress " [class.closed-tip]="isClosedTip" [data]="HelpTips.step4" diff --git a/modules/ui/src/app/app.component.ts b/modules/ui/src/app/app.component.ts index f5e44136b..c4db44cc3 100644 --- a/modules/ui/src/app/app.component.ts +++ b/modules/ui/src/app/app.component.ts @@ -259,10 +259,6 @@ export class AppComponent implements AfterViewInit { this.cdr.detectChanges(); } - get isRiskAssessmentRoute(): boolean { - return this.route.url === Routes.RiskAssessment; - } - get isDevicesRoute(): boolean { return this.route.url === Routes.Devices; }