diff --git a/public/app/core/components/AppChrome/TopBar/HelpTopBarButton.tsx b/public/app/core/components/AppChrome/TopBar/HelpTopBarButton.tsx index 1dcb30c9f48..690de079ab6 100644 --- a/public/app/core/components/AppChrome/TopBar/HelpTopBarButton.tsx +++ b/public/app/core/components/AppChrome/TopBar/HelpTopBarButton.tsx @@ -39,7 +39,12 @@ export const HelpTopBarButton = memo(function HelpTopBarButton({ isSmallScreen } // - hideFromTabs is false, OR // - Interactive learning plugin is not installed, OR // - Interactive learning component is not registered (plugin may exist but chose not to register) - if (isSmallScreen || !enrichedHelpNode.hideFromTabs || interactiveLearningPluginId === undefined || componentId === undefined) { + if ( + isSmallScreen || + !enrichedHelpNode.hideFromTabs || + interactiveLearningPluginId === undefined || + componentId === undefined + ) { return ( } placement="bottom-end"> ); -}); \ No newline at end of file +});