Skip to content

Commit 92cc4c5

Browse files
authored
Merge pull request #608 from dnum-mi/fix/types-in-dsfr-select
fix(DsfrSelect): 🏷️ les valeurs d’un select sont forcément string
2 parents c14174f + 13513cc commit 92cc4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DsfrSelect/DsfrSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const props = withDefaults(defineProps<{
1313
description?: string
1414
modelValue?: string | number
1515
label?: string
16-
options?:(string | number | { value: string | number, text: string, disabled?: boolean })[]
16+
options?:(string | { value: string, text: string, disabled?: boolean })[]
1717
successMessage?: string
1818
errorMessage?: string
1919
defaultUnselectedText?: string

0 commit comments

Comments
 (0)