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

pull/6132/head
Vijay Oommen 1 year ago committed by GitHub
parent c59b321dbb
commit d166cb9662
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save