Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -14,6 +14,7 @@
- Fixed `EuiFlyout` scrolling in Safari ([#2033](https://github.com/elastic/eui/pull/2033))
- Fixed `EuiCallOut` header icon alignment ([#2006](https://github.com/elastic/eui/pull/2006))
- Fixed `EuiInMemoryTable` sort value persistence through lifecycle updates ([#2035](https://github.com/elastic/eui/pull/2035))
- Fixed `EuiNavDrawerFlyout` heading ([#2040](https://github.com/elastic/eui/pull/2040))
Comment thread
PhilippBaranovskiy marked this conversation as resolved.
Outdated

**Breaking changes**

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