Browse Source

KERNEL-14215 fix:bi.text_value_check_combo无法显示-bug21

es6
Vivy.Pan 2 years ago
parent
commit
3bed5a8454
  1. 4
      src/case/combo/textvaluecheckcombo/combo.textvaluecheck.js

4
src/case/combo/textvaluecheckcombo/combo.textvaluecheck.js

@ -53,8 +53,8 @@ export class TextValueCheckCombo extends Widget {
});
this.popup.on(
Controller.EVENT_CHANGE,
...args => {
this.fireEvent(Controller.EVENT_CHANGE, ...args);
(...args) => {
this.fireEvent(Controller.EVENT_CHANGE, args);
}
);
this.textIconCheckCombo = createWidget({

Loading…
Cancel
Save