Skip to content

Commit

Permalink
fix(web): format of standard date field (#1148)
Browse files Browse the repository at this point in the history
fix: format of date field
  • Loading branch information
caichi-t authored May 9, 2024
1 parent 41569b1 commit 75f38e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ItemFormat: React.FC<Props> = ({ item, field, update, index }) => {
}}
/>
) : (
dateTimeFormat(item)
dateTimeFormat(item, "YYYY-MM-DD")
);
case "Bool":
return update ? (
Expand Down

0 comments on commit 75f38e8

Please sign in to comment.