Skip to content

Commit

Permalink
Now attrs is present by default on svg vnode
Browse files Browse the repository at this point in the history
  • Loading branch information
Swizz committed Jul 8, 2017
1 parent 328be6e commit c2d85fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/snabbdom-specs/vnode-svg/expected.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

export default (h) => {
return h('svg', {}, [
h('g', {}, [
return h('svg', { attrs: {} }, [
h('g', { attrs: {} }, [
h('circle', {
attrs: { cx: 43.5, cy: 23, r: 5 }
}, [])
Expand Down

0 comments on commit c2d85fb

Please sign in to comment.