Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
acstll committed Mar 8, 2016
1 parent 62ef705 commit 837e589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = function init(modules) {

// Close tag, if needed
if (VOID_ELEMENTS[tagName] !== true && !svg || svg && CONTAINER_ELEMENTS[tagName] === true) {
if (vnode.data && vnode.data.props && vnode.data.props.innerHTML) {
if (vnode.data.props && vnode.data.props.innerHTML) {
tag.push(vnode.data.props.innerHTML);
} else if (vnode.text) {
tag.push(vnode.text);
Expand Down

0 comments on commit 837e589

Please sign in to comment.