We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e4f59 commit 7dcbdddCopy full SHA for 7dcbddd
front_end/entrypoints/main/MainImpl.ts
@@ -571,6 +571,12 @@ export class MainImpl {
571
Timeline.TimelinePanel.LoadTimelineHandler.instance().handleQueryParam(value);
572
}
573
574
+ // Allow &landingView query param to override the default landing view.
575
+ const landingView = Root.Runtime.Runtime.queryParam('landingView');
576
+ if (landingView !== null) {
577
+ await UI.ViewManager.ViewManager.instance().showView(landingView);
578
+ }
579
+
580
// Initialize ARIAUtils.alert Element
581
UI.ARIAUtils.getOrCreateAlertElements();
582
UI.DockController.DockController.instance().announceDockLocation();
0 commit comments