Skip to content

Commit

Permalink
fix assets panel
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Mar 5, 2025
1 parent fd9f95d commit e91e166
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ export const getSolutionNavigation = (core: CoreStart): SolutionNavigation => {
const panelContentProvider: PanelContentProvider = (id: string) => {
// Selected nav nodes use the custom panel content
if (
id.endsWith('.explore') ||
id.endsWith('.rules-landing') ||
id.endsWith('.investigations') ||
id.endsWith('.rules-landing')
id.endsWith('.explore') ||
id.endsWith('.assets')
) {
return { content: panelContent };
}
Expand Down

0 comments on commit e91e166

Please sign in to comment.