Skip to content

Commit 52f160a

Browse files
kfuledead-claudia
authored andcommitted
remove unused parameter
1 parent 41ef2d1 commit 52f160a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

render/render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ module.exports = function() {
675675
setAttr(vnode, key, null, attrs[key], ns)
676676
}
677677
}
678-
function setAttr(vnode, key, old, value, ns, isFileInput) {
678+
function setAttr(vnode, key, old, value, ns) {
679679
if (key === "key" || key === "is" || value == null || isLifecycleMethod(key) || (old === value && !isFormAttribute(vnode, key)) && typeof value !== "object") return
680680
if (key[0] === "o" && key[1] === "n") return updateEvent(vnode, key, value)
681681
if (key.slice(0, 6) === "xlink:") vnode.dom.setAttributeNS("http://www.w3.org/1999/xlink", key.slice(6), value)

0 commit comments

Comments
 (0)