File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/vuetify/src/components/VSelect Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ export const VSelect = genericComponent<new <
163163 const form = useForm ( props )
164164 const autocomplete = useAutocomplete ( props )
165165 const selectedValues = computed ( ( ) => model . value . map ( selection => selection . value ) )
166- const displayValue = computed ( ( ) => model . value . map ( v => v . props . title ) . join ( ', ' ) )
167166 const isFocused = shallowRef ( false )
168167
169168 let keyboardLookupPrefix = ''
@@ -390,8 +389,8 @@ export const VSelect = genericComponent<new <
390389 < VTextField
391390 ref = { vTextFieldRef }
392391 { ...textFieldProps }
392+ modelValue = { model . value . map ( v => v . props . title ) . join ( ', ' ) }
393393 name = { undefined }
394- modelValue = { displayValue . value }
395394 onUpdate :modelValue = { onModelUpdate }
396395 v-model :focused = { isFocused . value }
397396 validationValue = { model . externalValue }
You can’t perform that action at this time.
0 commit comments