From e0e3d6ecae6df4b666c3e02b107c817013d6064c Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Sat, 15 Aug 2020 19:37:54 -0400 Subject: [PATCH] provide vnode to onupdate where it was actually needed --- js/src/forum/components/CommentPost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/forum/components/CommentPost.js b/js/src/forum/components/CommentPost.js index 5c49728e0..ddff5f622 100644 --- a/js/src/forum/components/CommentPost.js +++ b/js/src/forum/components/CommentPost.js @@ -53,7 +53,7 @@ export default class CommentPost extends Post { ]); } - onupdate() { + onupdate(vnode) { super.onupdate(); const contentHtml = this.isEditing() ? '' : this.attrs.post.contentHtml();