diff --git a/src/components/selectbutton/SelectButton.vue b/src/components/selectbutton/SelectButton.vue index 7c6f349f2..bba3ba9c9 100755 --- a/src/components/selectbutton/SelectButton.vue +++ b/src/components/selectbutton/SelectButton.vue @@ -57,7 +57,7 @@ export default { newValue = this.modelValue ? [...this.modelValue, optionValue]: [optionValue]; } else { - newValue = selected ? null : optionValue; + newValue = optionValue; } this.$emit('update:modelValue', newValue);