Skip to content

Commit

Permalink
Merge pull request #585 from dnum-mi/fix/make-disabled-prop-optional
Browse files Browse the repository at this point in the history
fix(DsfrSelect): 🐛 disabled is optional
  • Loading branch information
laruiss authored Aug 22, 2023
2 parents 770aa15 + bf616b3 commit 990977f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DsfrSelect/DsfrSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const props = withDefaults(defineProps<{
description?: string
modelValue?: string | number
label?: string
options?:(string | number | { value: string | number, text: string, disabled: boolean })[]
options?:(string | number | { value: string | number, text: string, disabled?: boolean })[]
successMessage?: string
errorMessage?: string
defaultUnselectedText?: string
Expand Down

0 comments on commit 990977f

Please sign in to comment.