Skip to content

Commit

Permalink
Set scheduled stream DateTimePicker minDate by the day instead of by …
Browse files Browse the repository at this point in the history
…the time (#3016)

Co-authored-by: miko <[email protected]>
  • Loading branch information
keikari and miko authored Nov 1, 2023
1 parent f9e9582 commit 746b2e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const PublishStreamReleaseDate = (props: Props) => {
format={clock24h ? 'y-MM-dd HH:mm' : 'y-MM-dd h:mm a'}
disableClock
clearIcon={null}
minDate={moment().add('30', 'minutes').toDate()}
minDate={moment().startOf('day').toDate()}
/>
</div>
)}
Expand Down

0 comments on commit 746b2e7

Please sign in to comment.