pull/6465/head
tugcekucukoglu 2024-09-24 10:28:44 +03:00
parent 97a294bfb5
commit 2341d1492b
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ export default {
return this.isValidOption(option) && this.isSelected(option);
},
isSelected(option) {
return this.isValidOption(option) && equals(this.modelValue, this.getOptionValue(option), this.equalityKey);
return equals(this.modelValue, this.getOptionValue(option), this.equalityKey);
},
findFirstOptionIndex() {
return this.visibleOptions.findIndex((option) => this.isValidOption(option));