Skip to content

Commit

Permalink
Default minItems and maxItems to null
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkidn committed Dec 8, 2023
1 parent 9827172 commit 6915121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/picker.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

:is-multiple="$isMultiple"

:min-items="$minItems"
:max-items="$maxItems"
:min-items="$minItems ?? null"
:max-items="$maxItems ?? null"
/>

0 comments on commit 6915121

Please sign in to comment.