diff --git a/packages/grafana-ui/src/components/TimePicker/TimePickerPopover.tsx b/packages/grafana-ui/src/components/TimePicker/TimePickerPopover.tsx index 23f3c580e91..29316c3334b 100644 --- a/packages/grafana-ui/src/components/TimePicker/TimePickerPopover.tsx +++ b/packages/grafana-ui/src/components/TimePicker/TimePickerPopover.tsx @@ -51,7 +51,7 @@ export class TimePickerPopover extends Component { onToCalendarChanged = (value: DateTime) => { value.set('h', 23); value.set('m', 59); - value.set('s', 0); + value.set('s', 59); this.setState({ to: value }); };