Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added `magnet` glyph to `EuiIcon` ([2010](https://github.com/elastic/eui/pull/2010))
- Changed `logoAWS` SVG in `EuiIcon` to work better in dark mode ([#2036](https://github.com/elastic/eui/pull/2036))
- Converted toast components to TypeScript ([#2032](https://github.com/elastic/eui/pull/2032))
- Changed `EuiNavDrawerFlyout` title from `h5` to `div` ([#2040](https://github.com/elastic/eui/pull/2040))

**Bug fixes**

Expand Down
2 changes: 1 addition & 1 deletion src/components/nav_drawer/nav_drawer_flyout.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const EuiNavDrawerFlyout = ({
return (
<div className={classes} aria-labelledby="navDrawerFlyoutTitle" {...rest}>
<EuiTitle className="euiNavDrawerFlyout__title" tabIndex="-1" size="xxs">
<h5 id="navDrawerFlyoutTitle">{title}</h5>
<div id="navDrawerFlyoutTitle">{title}</div>
</EuiTitle>
<EuiNavDrawerGroup
className="euiNavDrawerFlyout__listGroup"
Expand Down