From 460ca57224b31845873e7183be77ecd8e1a93426 Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 15 Nov 2021 19:57:45 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-56962=20fix:=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=8E=A7=E4=BB=B6=E5=8F=96=E5=80=BC=E8=BF=87=E6=BB=A4=E6=8E=89?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/single/input/file.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/base/single/input/file.js b/src/base/single/input/file.js index 904fbfcf5..55ce415e4 100644 --- a/src/base/single/input/file.js +++ b/src/base/single/input/file.js @@ -668,7 +668,11 @@ }, getValue: function () { - return this.wrap ? this.wrap.attach_array : []; + return this.wrap + ? BI.filter(this.wrap.attach_array, function (index, attach) { + return attach.attach_id; + }) + : []; }, getQueue: function () {