Closed rougin closed 2 months ago
When generating create.php and edit.php, the fields that has a date or datetime data types will only generated an <input type="text" />. It would be nice if it is <input type="date" /> in order for developers to spend time less on replacing them.
create.php
edit.php
date
datetime
<input type="text" />
<input type="date" />
Fixed in https://github.com/rougin/combustor/commit/b4f7ba3979ee58e3e72e492fcfb212d4b58b5e19
When generating
create.php
andedit.php
, the fields that has adate
ordatetime
data types will only generated an<input type="text" />
. It would be nice if it is<input type="date" />
in order for developers to spend time less on replacing them.