mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
Remove mapSideEffect
This commit is contained in:
parent
bb45d0eae9
commit
13cba84445
@ -24,13 +24,11 @@ import {VideoView} from "./VideoView";
|
||||
|
||||
export class ReplyPreviewView extends TemplateView {
|
||||
render(t, vm) {
|
||||
const replyContainer = t.div({className: "ReplyPreviewView"});
|
||||
t.mapSideEffect(vm => vm.body, () => {
|
||||
while (replyContainer.lastChild) {
|
||||
replyContainer.removeChild(replyContainer.lastChild);
|
||||
}
|
||||
replyContainer.appendChild(vm.isRedacted? this._renderRedaction(vm) : this._renderReplyPreview(t, vm));
|
||||
})
|
||||
const replyContainer = t.div({ className: "ReplyPreviewView" }, [
|
||||
vm.isRedacted
|
||||
? this._renderRedaction(vm)
|
||||
: this._renderReplyPreview(t, vm),
|
||||
]);
|
||||
return replyContainer;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user