From 701ab5576fb0476d87bc0638361e88a85cde37c8 Mon Sep 17 00:00:00 2001 From: zsmj Date: Thu, 18 Aug 2022 14:59:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=86=99=E9=94=99=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/combo/textvaluecombo/combo.textvalue.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/case/combo/textvaluecombo/combo.textvalue.js b/src/case/combo/textvaluecombo/combo.textvalue.js index f59714c1f..b7f25ea50 100644 --- a/src/case/combo/textvaluecombo/combo.textvalue.js +++ b/src/case/combo/textvaluecombo/combo.textvalue.js @@ -78,12 +78,12 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { action: (...args) => { this.setValue(this.popup.getValue()); this.combo.hideView(); - this.fireEvent(BI.TextValueCombo.EVENT_CHANGE, args); + this.fireEvent(BI.TextValueCombo.EVENT_CHANGE, ...args); } }, { eventName: BI.Controller.EVENT_CHANGE, action: (...args) => { - this.fireEvent(BI.Controller.EVENT_CHANGE, args); + this.fireEvent(BI.Controller.EVENT_CHANGE, ...args); } } ]