Skip to content

Commit e48c1c3

Browse files
Update packages/runtime-core/src/vnode.ts
Co-authored-by: skirtle <[email protected]>
1 parent 172d23a commit e48c1c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/src/vnode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ export function mergeProps(...args: (Data & VNodeProps)[]) {
836836
? [].concat(existing as any, incoming as any)
837837
: incoming
838838
} else if (incoming === '') {
839-
ret[key] = toMerge[key]
839+
ret[key] = incoming
840840
}
841841
} else if (key !== '') {
842842
ret[key] = toMerge[key]

0 commit comments

Comments
 (0)