From 39a8ab6d5b7ff395b498e230e5212986afcada94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Wed, 14 Nov 2018 11:47:32 +0100 Subject: [PATCH] do not update props anymore --- packages/tiptap/src/utils/ComponentView.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/tiptap/src/utils/ComponentView.js b/packages/tiptap/src/utils/ComponentView.js index d0bffca2..23045b74 100644 --- a/packages/tiptap/src/utils/ComponentView.js +++ b/packages/tiptap/src/utils/ComponentView.js @@ -87,8 +87,11 @@ export default class ComponentView { this.node = node this.decorations = decorations - this.vm._props.node = node - this.vm._props.decorations = decorations + + // TODO: should be update props? maybe this is required for the collab plugin + // this.vm._props.node = node + // this.vm._props.decorations = decorations + return true }