date -> datetime
This commit is contained in:
parent
c1014093b0
commit
a86996f451
|
|
@ -93,7 +93,7 @@ select {
|
|||
}
|
||||
}
|
||||
|
||||
input[type="date"]::-webkit-calendar-picker-indicator {
|
||||
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
|
||||
color: rgba(0, 0, 0, 0);
|
||||
opacity: 1;
|
||||
display: block;
|
||||
|
|
|
|||
|
|
@ -390,7 +390,7 @@ const Posts = () => {
|
|||
<input
|
||||
placeholder="Filter by published"
|
||||
id="filter-published"
|
||||
type="date"
|
||||
type="datetime-local"
|
||||
value={filters.fil_publish_date.value}
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
||||
setFilters({
|
||||
|
|
@ -407,7 +407,7 @@ const Posts = () => {
|
|||
<input
|
||||
placeholder="Filter by created"
|
||||
id="filter-created"
|
||||
type="date"
|
||||
type="datetime-local"
|
||||
value={filters.fil_createdAt.value}
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
||||
setFilters({
|
||||
|
|
@ -424,7 +424,7 @@ const Posts = () => {
|
|||
<input
|
||||
placeholder="Filter by updated"
|
||||
id="filter-updated"
|
||||
type="date"
|
||||
type="datetime-local"
|
||||
value={filters.fil_updatedAt.value}
|
||||
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
||||
setFilters({
|
||||
|
|
|
|||
Loading…
Reference in New Issue