Browse Source

Merge remote-tracking branch 'origin/master'

research/test
Kobi 1 year ago
parent
commit
6c57221b42
  1. 5
      packages/fineui/src/base/tree/customtree.js

5
packages/fineui/src/base/tree/customtree.js

@ -123,9 +123,8 @@ export class CustomTree extends Widget {
itemsCreator: (op, callback) => { itemsCreator: (op, callback) => {
itemsCreator.apply(this, [ itemsCreator.apply(this, [
op, op,
items => { (...args) => {
const args = Array.prototype.slice.call(arguments, 0); args[0] = this._formatItems(args[0]);
args[0] = this._formatItems(items);
callback(...args); callback(...args);
} }
]); ]);

Loading…
Cancel
Save