mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
MM-52793 : Search calendar selects the day before when selected for a date (#23618)
This commit is contained in:
parent
628273d98d
commit
9322f71f94
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ export default class SearchDateSuggestion extends React.PureComponent<Props> {
|
|||
};
|
||||
|
||||
handleDayClick = (day: Date) => {
|
||||
const dayString = day.toISOString().split('T')[0];
|
||||
const dayString = new Date(Date.UTC(day.getFullYear(), day.getMonth(), day.getDate())).toISOString().split('T')[0];
|
||||
this.props.onClick(dayString, this.props.matchedPretext);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue