From b8ce359fb483efd63cfaed289b65a74fcf2e03b1 Mon Sep 17 00:00:00 2001 From: zsmj1994 Date: Mon, 26 Jul 2021 19:33:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E5=81=9A=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E6=AF=94=E8=BE=83,=E7=9C=81=E6=8E=89=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E5=9B=9E=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/controller/controller.bubbles.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/controller/controller.bubbles.js b/src/core/controller/controller.bubbles.js index 8bde8ba86..61e59bf8b 100644 --- a/src/core/controller/controller.bubbles.js +++ b/src/core/controller/controller.bubbles.js @@ -37,7 +37,9 @@ BI.BubblesController = BI.inherit(BI.Controller, { }); } var bubble = this.storeBubbles[name]; - bubble.setValue("text"); + if (bubble.getText() !== text) { + bubble.setText(text); + } BI.createWidget({ type: "bi.default",