We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e5b31 commit c64f9aeCopy full SHA for c64f9ae
src/platforms/web/runtime/modules/attrs.js
@@ -1,6 +1,6 @@
1
/* @flow */
2
3
-import { isIE9 } from 'core/util/env'
+import { isIE9, isEdge } from 'core/util/env'
4
5
import {
6
extend,
@@ -42,8 +42,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
42
}
43
44
// #4391: in IE9, setting type can reset value for input[type=radio]
45
+ // #6666: IE/Edge forces progress value down to 1 before setting a max
46
/* istanbul ignore if */
- if (isIE9 && attrs.value !== oldAttrs.value) {
47
+ if ((isIE9 || isEdge) && attrs.value !== oldAttrs.value) {
48
setAttr(elm, 'value', attrs.value)
49
50
for (key in oldAttrs) {
0 commit comments