From f37986e97b8bfff0751f343e168f4f96c2416bb6 Mon Sep 17 00:00:00 2001 From: Jayclifford345 Date: Fri, 12 Dec 2025 13:10:11 +0000 Subject: [PATCH] prettier --- .../components/AppChrome/TopBar/HelpTopBarButton.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 +});