Skip to content

Commit

Permalink
fix(app-headless-cms): remove seconds from date time inputs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel910 committed May 13, 2024
1 parent 03b917f commit 72bdd26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const DateTimeWithTimezone = ({ bind, trailingIcon, field }: DateTimeWith
label: `${field.label} time`
}}
type={"time"}
step={5}
step={60}
/>
</Cell>
<Cell span={cellSize}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const DateTimeWithoutTimezone = ({
label: `${field.label} time`
}}
type={"time"}
step={5}
step={60}
/>
</Cell>
<RemoveFieldButton trailingIcon={trailingIcon} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Time = (props: InputProps) => {
}
}}
type={"time"}
step={5}
step={60}
/>
);
};

0 comments on commit 72bdd26

Please sign in to comment.