Browse Source

JSY-18004 fix: 【冒烟】列表筛选器未搜索时,多了一个x的取消符号

es6
zsmj 2 years ago
parent
commit
0f4796133e
  1. 2
      src/widget/editor/editor.search.js

2
src/widget/editor/editor.search.js

@ -34,7 +34,7 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
stopEvent: true,
cls: "close-font",
invisible: BI.isKey(o.value)
invisible: !BI.isKey(o.value)
});
this.clear.on(BI.IconButton.EVENT_CHANGE, function () {
self.setValue("");

Loading…
Cancel
Save