@alauda/ui 6.4.2-beta.38 → 6.4.2-beta.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2020/alauda-ui.mjs
CHANGED
|
@@ -11343,8 +11343,8 @@ class TreeSelectComponent extends CommonFormControl {
|
|
|
11343
11343
|
return nodes.reduce((prevValue, currentNode) => prevValue.concat(currentNode, this.flatNodesData(currentNode.children)), []);
|
|
11344
11344
|
}
|
|
11345
11345
|
getLabelFromNode(node) {
|
|
11346
|
-
return (node.
|
|
11347
|
-
|
|
11346
|
+
return (this.labelFn?.(node.value) ||
|
|
11347
|
+
node.label ||
|
|
11348
11348
|
coerceString(this.trackFn(node.value)));
|
|
11349
11349
|
}
|
|
11350
11350
|
_filterFn(filterString, node) {
|