Skip to content

Commit

Permalink
[joy-ui][docs] Fix the date min & max slot props values on the Input …
Browse files Browse the repository at this point in the history
…demo (#40018)

Signed-off-by: Avikalp Kumar Gupta <[email protected]>
  • Loading branch information
avikalpg authored Nov 29, 2023
1 parent a656b90 commit 5fece8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data/joy/components/input/InputSlotProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default function InputSlotProps() {
type="date"
slotProps={{
input: {
min: '2018-06-07T00:00',
max: '2018-06-14T00:00',
min: '2018-06-07',
max: '2018-06-14',
},
}}
/>
Expand Down
4 changes: 2 additions & 2 deletions docs/data/joy/components/input/InputSlotProps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default function InputSlotProps() {
type="date"
slotProps={{
input: {
min: '2018-06-07T00:00',
max: '2018-06-14T00:00',
min: '2018-06-07',
max: '2018-06-14',
},
}}
/>
Expand Down

0 comments on commit 5fece8e

Please sign in to comment.