You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit e522459 - improve_input_html_options (#53), breaks datetimepicker functionality when an ActiveAdmin form is submitted. Hours and minutes are cut off the submitted value attributes, and the lteq value attribute is overwritten with the submitted gteq value attribute.
The text was updated successfully, but these errors were encountered:
[refs activeadmin-plugins#52]
@mantoszew found the bug with range-input:
- From/To placeholder are missing
This commit aims to fix it.
And also add support of other `input_html` options.
For example:
```ruby
form do |f|
f.input :created_at, as: :date_time_picker, input_html: { placeholder: 'Text here...' }
end
```
Commit e522459 - improve_input_html_options (#53), breaks datetimepicker functionality when an ActiveAdmin form is submitted. Hours and minutes are cut off the submitted value attributes, and the lteq value attribute is overwritten with the submitted gteq value attribute.
The text was updated successfully, but these errors were encountered: