Browse Source

Merge pull request #41657 in DEC/fineui from master to feature/x

* commit 'b315393305b3da310c5ba472c035f8a51317396e':
  JSY-18004 fix: 【冒烟】列表筛选器未搜索时,多了一个x的取消符号
es6
superman 2 years ago
parent
commit
b762598c97
  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