From f5486829175633bcc2032ccdbf6753b2ffcfd96e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Tue, 6 Aug 2024 16:51:29 +0200 Subject: [PATCH] SONAR-22685 Fix Icon swap issue in admin nav bar (#11474) --- .../sonar-web/design-system/src/components/NavBarTabs.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/sonar-web/design-system/src/components/NavBarTabs.tsx b/server/sonar-web/design-system/src/components/NavBarTabs.tsx index 14bcfcef228..09740e5e417 100644 --- a/server/sonar-web/design-system/src/components/NavBarTabs.tsx +++ b/server/sonar-web/design-system/src/components/NavBarTabs.tsx @@ -71,7 +71,11 @@ export const NavBarTabLink = forwardRef( {children} - {withChevron && } + {withChevron && ( + + + + )} ); -- 2.39.5