Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions front_end/entrypoints/main/MainImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,12 @@ export class MainImpl {
Timeline.TimelinePanel.LoadTimelineHandler.instance().handleQueryParam(value);
}

// Allow &landingView query param to override the default landing view.
const landingView = Root.Runtime.Runtime.queryParam('landingView');
if (landingView !== null) {
await UI.ViewManager.ViewManager.instance().showView(landingView);
}

// Initialize ARIAUtils.alert Element
UI.ARIAUtils.getOrCreateAlertElements();
UI.DockController.DockController.instance().announceDockLocation();
Expand Down
Loading