Skip to content

Commit

Permalink
Fixed EuiSuperDatePicker "End date" popover shows wrong relative time (
Browse files Browse the repository at this point in the history
…#3132)

* fixes relative tab not showing correct value

* added cl
  • Loading branch information
ashikmeerankutty authored Mar 24, 2020
1 parent bccf4e1 commit 0def6f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

**Bug Fixes**

- Fixed bug in `EuiSuperDatePicker` not showing correct values in relative tab of end date ([#3132](https://github.com/elastic/eui/pull/3132))
- Fixed bug in `EuiSuperDatePicker` to show correct values of commonly used values in relative tab ([#3106](https://github.com/elastic/eui/pull/3106))
- Fixed race condition in `EuiIcon` when switching from dynamically fetched components ([#3118](https://github.com/elastic/eui/pull/3118))
- Fixed the issue that `EuiResizeObserver` fallback did not properly listen to pure window resizing ([#3088](https://github.com/elastic/eui/pull/3088))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function EuiDatePopoverContent({
<EuiRelativeTab
dateFormat={dateFormat}
locale={locale}
value={value}
value={toAbsoluteString(value, roundUp)}
onChange={onChange}
roundUp={roundUp}
position={position}
Expand Down

0 comments on commit 0def6f1

Please sign in to comment.