mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
TimePicker: Set time to to 23:59:59 when setting To time using calendar (#18595)
This commit is contained in:
committed by
Torkel Ödegaard
parent
325fd29ea0
commit
f3d1543e9f
@@ -51,7 +51,7 @@ export class TimePickerPopover extends Component<Props, State> {
|
||||
onToCalendarChanged = (value: DateTime) => {
|
||||
value.set('h', 23);
|
||||
value.set('m', 59);
|
||||
value.set('s', 0);
|
||||
value.set('s', 59);
|
||||
this.setState({ to: value });
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user