diff --git a/CHANGELOG.md b/CHANGELOG.md
index 95b61a4e5b7..67acd0c881a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,15 @@
## [`master`](https://github.com/elastic/eui/tree/master)
-No public interface changes since `3.2.0`.
+**Bug fixes**
+
+- Removed IE flex column fix in favor of forcing the consumer to add a `grow` prop. ([#1044](https://github.com/elastic/eui/pull/1044))
+- Removed max-width to children of `EuiPopover`. ([#1044](https://github.com/elastic/eui/pull/1044))
## [`3.2.0`](https://github.com/elastic/eui/tree/v3.2.0)
+**Note: this release creates a minor regression to the display of `EuiFlexItem`s inside a `column` `EuiFlexGroup`. This is fixed in `master`.**
+**Note: this release creates a minor regression to the display of `EuiPopoverTitle`. This is fixed in `master`.**
+
- Added typings for 'EuiBadge' ([#1034](https://github.com/elastic/eui/pull/1034))
- Added a visual pattern for Kibana's Global Date Picker ([#1026](https://github.com/elastic/eui/pull/1026))
- Added `responsive` prop to `EuiFlexGrid` ([#1026](https://github.com/elastic/eui/pull/1026))
diff --git a/src-docs/src/views/date_picker/global_date_picker.js b/src-docs/src/views/date_picker/global_date_picker.js
index dc08aeb0e92..e45e76e2404 100644
--- a/src-docs/src/views/date_picker/global_date_picker.js
+++ b/src-docs/src/views/date_picker/global_date_picker.js
@@ -312,7 +312,7 @@ export default class extends Component {
}
return (
-
- You can change direction using the
+ You can change direction using the
+ Depending on the nested structure of your flex groups, it is possible that
+ flex-items inside a column directed flex group will not show. To counter this,
+ add the grow
prop and set to either false
or a number.
+ Setting grow
to true
will not suffice. You may also need
+ to adjust the flex-basis
value.
+