From 33f0aaa5d8eae3f591756a192cd316fe7fb1be88 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 19 Dec 2024 22:42:22 +0200 Subject: [PATCH] email note fix --- client/src/views/stream/notes/email-received.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/views/stream/notes/email-received.js b/client/src/views/stream/notes/email-received.js index 5d5c97fa99..41f30014a3 100644 --- a/client/src/views/stream/notes/email-received.js +++ b/client/src/views/stream/notes/email-received.js @@ -210,16 +210,16 @@ class EmailReceivedNoteStreamView extends NoteStreamView { const postView = this.getPostView(); - if (postView) { - postView.seeMoreText = false; - } - await this.reRender(); if (!this.detailsIsShown || !this.emailId) { return; } + if (postView) { + postView.seeMoreText = false; + } + if (this.bodyFieldView) { this.bodyFieldView.toShowQuotePart = false;