When I create an event the date and time are correctly saved in my model. When editing this event, the date is shown but not the time. These are two separate fields, both using flatpickr. The value in the time form-field is set correctly:
<input type="text" name="start_time" value="11:00:00" class="form-control form-control-sm flatpicker-input flatpicker-input-time active flatpickr-input" id="id_start_time" readonly="readonly">
The time is not shown because the current time is later than 11:00. On events where the time is bigger as the current time, time value is shown. Does there is an option to set or am I missing something?