@syncfusion/ej2-navigations 27.2.3 → 27.2.4
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/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +3 -1
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +3 -1
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/treeview/treeview.js +3 -1
|
@@ -10870,7 +10870,9 @@ let TreeView = TreeView_1 = class TreeView extends Component {
|
|
|
10870
10870
|
.filter((childNode) => {
|
|
10871
10871
|
if (childNode && typeof childNode === 'object' && 'pid' in childNode) {
|
|
10872
10872
|
const childNodePid = childNode.pid;
|
|
10873
|
-
|
|
10873
|
+
if (!isNullOrUndefined(childNodePid)) {
|
|
10874
|
+
return childNodePid.toString() === dataUid;
|
|
10875
|
+
}
|
|
10874
10876
|
}
|
|
10875
10877
|
return false;
|
|
10876
10878
|
});
|