Merge pull request #503 from vector-im/bwindels/fix-reactions-vm-null
use mapped value rather than reading parent vm again
This commit is contained in:
commit
07c6bf7055
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ export class BaseMessageView extends TemplateView {
|
|||
let reactionsView = null;
|
||||
t.mapSideEffect(vm => vm.reactions, reactions => {
|
||||
if (reactions && this._interactive && !reactionsView) {
|
||||
reactionsView = new ReactionsView(vm.reactions);
|
||||
reactionsView = new ReactionsView(reactions);
|
||||
this.addSubView(reactionsView);
|
||||
li.appendChild(mountView(reactionsView));
|
||||
} else if (!reactions && reactionsView) {
|
||||
|
|
Reference in a new issue