From cf0f9a57e27c0428bd8f321ad3cc94e1115ef97a Mon Sep 17 00:00:00 2001 From: Clint Andrew Hall Date: Fri, 28 Apr 2023 13:49:46 -0400 Subject: [PATCH] Fix typo --- .../public/components/page_template/lazy_page_template.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/observability_shared/public/components/page_template/lazy_page_template.tsx b/x-pack/plugins/observability_shared/public/components/page_template/lazy_page_template.tsx index 8a9a4207c1c95..e61254fa10ca6 100644 --- a/x-pack/plugins/observability_shared/public/components/page_template/lazy_page_template.tsx +++ b/x-pack/plugins/observability_shared/public/components/page_template/lazy_page_template.tsx @@ -24,7 +24,7 @@ export function createLazyObservabilityPageTemplate({ return (pageTemplateProps: LazyObservabilityPageTemplateProps) => { const isSidebarEnabled = useObservable(isSidebarEnabled$); const { showSolutionNav: showSolutionNavProp, ...props } = pageTemplateProps; - const showSolutionNav = !!showSolutionNavProp && isSidebarEnabled; + const showSolutionNav = !!showSolutionNavProp || isSidebarEnabled; return (