1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

PM-19470 Redirect to the first tab (#14164)

This commit is contained in:
Vijay Oommen
2025-04-10 13:18:07 -05:00
committed by GitHub
parent c59b321dbb
commit d166cb9662

View File

@@ -95,10 +95,13 @@ export class CriticalApplicationsComponent implements OnInit {
} }
goToAllAppsTab = async () => { goToAllAppsTab = async () => {
await this.router.navigate([`organizations/${this.organizationId}/risk-insights`], { await this.router.navigate(
[`organizations/${this.organizationId}/access-intelligence/risk-insights`],
{
queryParams: { tabIndex: RiskInsightsTabType.AllApps }, queryParams: { tabIndex: RiskInsightsTabType.AllApps },
queryParamsHandling: "merge", queryParamsHandling: "merge",
}); },
);
}; };
unmarkAsCriticalApp = async (hostname: string) => { unmarkAsCriticalApp = async (hostname: string) => {