-
Notifications
You must be signed in to change notification settings - Fork 922
Closed
Labels
Description
Bug report
What I did
I have a crud with a datetime input. On the create all ok but on edit the input force me to match the seconds of the value saved on create if i change the seconds the value is invalid and the form dont send.
CRUD::addField([
'name' => 'publish_on',
'label' => __('backend.events.publish'),
'type' => 'datetime',
'wrapperAttributes' => [
'class' => 'form-group col-md-6',
],
]);What I expected to happen
Change value and send the form.
What happened
If i try to edit the secons the input is invalid and i can't send the form and save new value.

What I've already tried to fix it
I override the view datetime and add step="1" to the input
Reactions are currently unavailable