From 8715eea3d61053cacb7e807a279270f099a5f1af Mon Sep 17 00:00:00 2001 From: windy Date: Mon, 1 Aug 2022 17:26:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20=E5=90=8C?= =?UTF-8?q?=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/downlist/item.downlistgroup.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/widget/downlist/item.downlistgroup.js b/src/widget/downlist/item.downlistgroup.js index 31492b78b..e142a72b7 100644 --- a/src/widget/downlist/item.downlistgroup.js +++ b/src/widget/downlist/item.downlistgroup.js @@ -29,6 +29,8 @@ BI.DownListGroupItem = BI.inherit(BI.BasicButton, { cls: o.iconCls1, width: 36, height: o.height, + iconHeight: o.iconHeight, + iconWidth: 36, disableSelected: true, selected: this._digest(o.value) }); From 1e61504c332006b7ca149a0d28247567acbd765a Mon Sep 17 00:00:00 2001 From: "Jimmy.Chai" Date: Mon, 1 Aug 2022 20:56:57 +0800 Subject: [PATCH 2/2] =?UTF-8?q?BI-110891=20fix=EF=BC=9A=E5=90=8C=E6=AD=A5f?= =?UTF-8?q?ineui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/1.pane.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/1.pane.js b/src/base/1.pane.js index 0a4c93a96..074d6a492 100644 --- a/src/base/1.pane.js +++ b/src/base/1.pane.js @@ -40,10 +40,10 @@ BI.Pane = BI.inherit(BI.Widget, { loading: function () { var self = this, o = this.options; - var loadingAnimation = BI.Providers.getProvider("bi.provider.system").getLoading({ + var loadingAnimation = BI.createWidget(BI.Providers.getProvider("bi.provider.system").getLoading({ loadingSize: o.loadingSize, context: this - }); + })); // pane在同步方式下由items决定tipText的显示与否 // loading的异步情况下由loaded后对面板的populate的时机决定 this.setTipVisible(false);