This commit is contained in:
Jan Prochazka
2022-08-27 20:11:20 +02:00
parent 6b5e33d97e
commit 650f9a3db9
2 changed files with 2 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ export abstract class PerspectiveTreeNode {
} }
get childDataColumn() { get childDataColumn() {
if (!this.isExpandable && this.isChecked) { if (this.isCheckedColumn) {
return this.codeName; return this.codeName;
} }
return null; return null;

View File

@@ -96,7 +96,7 @@
} }
for (const child of node.childNodes) { for (const child of node.childNodes) {
if (child.isExpandable && child.isChecked) { if (child.isExpandable && child.isCheckedNode) {
await loadLevelData(child, rows, counts); await loadLevelData(child, rows, counts);
// loadProps.push(child.getNodeLoadProps()); // loadProps.push(child.getNodeLoadProps());
} }