From e9dc2f0b1750b0f06a44bf3986851c6a7e0ae58c Mon Sep 17 00:00:00 2001 From: kurilova Date: Thu, 19 Feb 2026 09:18:34 +0000 Subject: [PATCH 1/2] Focus newly saved profile --- .../pages/risk-assessment/risk-assessment.component.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/ui/src/app/pages/risk-assessment/risk-assessment.component.ts b/modules/ui/src/app/pages/risk-assessment/risk-assessment.component.ts index 1e4a46666..08bd3476d 100644 --- a/modules/ui/src/app/pages/risk-assessment/risk-assessment.component.ts +++ b/modules/ui/src/app/pages/risk-assessment/risk-assessment.component.ts @@ -206,8 +206,8 @@ export class RiskAssessmentComponent this.liveAnnouncer.clear(); if (!selectedProfile) { this.saveProfile(profile, () => { - this.store.setFocusOnCreateButton(); this.store.scrollToSelectedProfile(); + this.store.setFocusOnSelectedProfile(); }); } else if ( this.compareProfiles(profile, selectedProfile) || @@ -379,10 +379,13 @@ export class RiskAssessmentComponent onSave: (profile: Profile) => { if (profile.status === ProfileStatus.VALID) { this.openSuccessDialog(profile, focusElement); - } else { - focusElement(); } this.store.updateSelectedProfile(profile); + if (profile.status !== ProfileStatus.VALID) { + timer(100).subscribe(() => { + focusElement(); + }); + } }, }); } From 5afb8693c2e5187c536edb8a2fb102c344a4e018 Mon Sep 17 00:00:00 2001 From: kurilova Date: Mon, 23 Feb 2026 10:34:44 +0000 Subject: [PATCH 2/2] Update version --- make/DEBIAN/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/DEBIAN/control b/make/DEBIAN/control index e6dabdc8d..d9e58d7f2 100644 --- a/make/DEBIAN/control +++ b/make/DEBIAN/control @@ -1,5 +1,5 @@ Package: Testrun -Version: 2.3.2 +Version: 2.3.1-beta.1 Architecture: amd64 Maintainer: Google Homepage: https://github.com/google/testrun