From cdf8a43b286be52ca387361bd956bf26f3d3c64d Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 8 Feb 2022 11:55:57 +0200 Subject: [PATCH] fix forward email --- client/src/views/email/detail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/email/detail.js b/client/src/views/email/detail.js index b1cc513ace..62a03aa0dc 100644 --- a/client/src/views/email/detail.js +++ b/client/src/views/email/detail.js @@ -468,7 +468,7 @@ define('views/email/detail', ['views/detail', 'email-helper'], function (Dep, Em .postRequest('Email/action/getCopiedAttachments', { id: this.model.id, }) - .then(() => { + .then(data => { attributes['attachmentsIds'] = data.ids; attributes['attachmentsNames'] = data.names;