diff --git a/components/dropdown/Dropdown.vue b/components/dropdown/Dropdown.vue index bf84bbf90..512493d41 100755 --- a/components/dropdown/Dropdown.vue +++ b/components/dropdown/Dropdown.vue @@ -809,7 +809,7 @@ export default { return this.isValidOption(option) && this.isSelected(option); }, isSelected(option) { - return ObjectUtils.equals(this.modelValue, this.getOptionValue(option), this.equalityKey); + return this.isValidOption(option) && ObjectUtils.equals(this.modelValue, this.getOptionValue(option), this.equalityKey); }, findFirstOptionIndex() { return this.visibleOptions.findIndex((option) => this.isValidOption(option));