From 0be44091b2d4f84fcdf9b26876ba9da3e4bdcc70 Mon Sep 17 00:00:00 2001 From: "Oliver.Ke" Date: Tue, 13 Sep 2022 13:54:06 +0800 Subject: [PATCH 1/2] =?UTF-8?q?BI-113888=20fix:=20MultiLayerDownListPopup?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E9=A1=B9=E9=AB=98=E5=BA=A6=E5=8F=AF=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/multilayerdownlist/popup.downlist.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widget/multilayerdownlist/popup.downlist.js b/src/widget/multilayerdownlist/popup.downlist.js index 7483349de..8fbacd285 100644 --- a/src/widget/multilayerdownlist/popup.downlist.js +++ b/src/widget/multilayerdownlist/popup.downlist.js @@ -99,7 +99,7 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { item.el.logic = { dynamic: true }; - item.el.height = sourceItem.el.height || self.constants.height; + item.el.height = sourceItem.el.height || BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT; item.el.iconCls2 = self.constants.nextIcon; item.popup = { lgap: 1, @@ -183,7 +183,7 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { if (BI.isNotEmptyArray(child.children)) { item.type = "bi.down_list_group_item"; item.iconCls2 = self.constants.nextIcon; - item.height = child.height || self.constants.height; + item.height = child.height || BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT; self._createChildren(item, child); } targetItem.items.push(item); From c6650459a6dbb0b178319b3a59ef1116658c09c5 Mon Sep 17 00:00:00 2001 From: "Oliver.Ke" Date: Tue, 13 Sep 2022 13:56:08 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20SelectTex?= =?UTF-8?q?tTrigger=E7=9A=84text=E4=BC=A0=E5=87=BD=E6=95=B0=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E6=9C=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/trigger/trigger.text.select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/case/trigger/trigger.text.select.js b/src/case/trigger/trigger.text.select.js index 6907cd38d..fad37b1ce 100644 --- a/src/case/trigger/trigger.text.select.js +++ b/src/case/trigger/trigger.text.select.js @@ -86,7 +86,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, { }; } return { - text: o.text + text, }; } },