mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-01 00:23:57 +00:00
fix
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user