fix: fix updating node views, fix #1656

This commit is contained in:
Philipp Kühn 2021-07-28 14:49:00 +02:00
parent 6f4142eb68
commit d7f6e0ce3f
3 changed files with 3 additions and 3 deletions

View File

@ -147,7 +147,7 @@ class ReactNodeView extends NodeView<React.FunctionComponent, Editor, ReactNodeV
this.node = node
this.decorations = decorations
updateProps()
updateProps({ node, decorations })
return true
}

View File

@ -152,7 +152,7 @@ class VueNodeView extends NodeView<(Vue | VueConstructor), Editor, VueNodeViewRe
this.node = node
this.decorations = decorations
updateProps()
updateProps({ node, decorations })
return true
}

View File

@ -153,7 +153,7 @@ class VueNodeView extends NodeView<Component, Editor, VueNodeViewRendererOptions
this.node = node
this.decorations = decorations
updateProps()
updateProps({ node, decorations })
return true
}