We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56c8ae commit e54bc84Copy full SHA for e54bc84
src/SideMenu.tsx
@@ -91,7 +91,7 @@ export const SideMenu = memo(
91
{...rest}
92
ref={ref}
93
style={style}
94
- aria-labelledby={titleId}
+ {...(title !== undefined && { "aria-labelledby": titleId })}
95
className={cx(
96
fr.cx("fr-sidemenu", {
97
"fr-sidemenu--right": align === "right",
stories/SideMenu.stories.tsx
@@ -307,3 +307,18 @@ export const SideMenuWith3Levels = getStory({
307
}
308
]
309
});
310
+
311
+export const SideMenuWithNoTitle = getStory({
312
+ "burgerMenuButtonText": "Dans cette rubrique",
313
+ "items": [
314
+ {
315
+ "isActive": true,
316
+ "text": "Accès direct",
317
+ "linkProps": { "href": "#" }
318
+ },
319
320
321
322
+ }
323
+ ]
324
+});
0 commit comments