Skip to content

Commit d0cfd54

Browse files
committed
Revert "fix select multiple first option auto-selected in Chrome/FF (fix #3852)"
This reverts commit f9bef75.
1 parent 8bb1e58 commit d0cfd54

File tree

1 file changed

+1
-10
lines changed
  • src/platforms/web/runtime/modules

1 file changed

+1
-10
lines changed

src/platforms/web/runtime/modules/attrs.js

+1-10
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ function setAttr (el: Element, key: string, value: any) {
6868
}
6969

7070
export default {
71-
create: function initAttrs (_: VNodeWithData, vnode: VNodeWithData) {
72-
updateAttrs(_, vnode)
73-
// #3852: if the "multiple" attribute is added to a <select> element
74-
// when the children options have already been appended, Chrome/Firefox
75-
// auto-selects the first option.
76-
const el: any = vnode.elm
77-
if (vnode.tag === 'select' && el.multiple) {
78-
el.options[0] && (el.options[0].selected = false)
79-
}
80-
},
71+
create: updateAttrs,
8172
update: updateAttrs
8273
}

0 commit comments

Comments
 (0)