diff --git a/src/components/SelectInput/SelectInput.vue b/src/components/SelectInput/SelectInput.vue index a4487be2..6a669f37 100644 --- a/src/components/SelectInput/SelectInput.vue +++ b/src/components/SelectInput/SelectInput.vue @@ -229,6 +229,7 @@ export default { const selectedValue = this.options.find( (item) => item.value === this.value, ); + this.selected = { name: '', value: '' }; if (selectedValue) this.selected = selectedValue; }, },