This commit is contained in:
Jan Prochazka
2022-09-01 15:53:44 +02:00
parent 91e1c83a91
commit 61f82be9f3
2 changed files with 3 additions and 0 deletions

View File

@@ -236,6 +236,8 @@ export abstract class PerspectiveTreeNode {
const nodeConfig: PerspectiveNodeConfig = { const nodeConfig: PerspectiveNodeConfig = {
...createPerspectiveNodeConfig(this.namedObject), ...createPerspectiveNodeConfig(this.namedObject),
isAutoGenerated: true, isAutoGenerated: true,
conid: this.parentNodeConfig?.conid,
database: this.parentNodeConfig?.database,
}; };
const refConfig: PerspectiveReferenceConfig = { const refConfig: PerspectiveReferenceConfig = {
designerId: uuidv1(), designerId: uuidv1(),

View File

@@ -372,6 +372,7 @@
if (!display) return; if (!display) return;
await tick(); await tick();
if (!domTable) return; if (!domTable) return;
if (!display) return;
if (disableLoadNextRef.get()) return; if (disableLoadNextRef.get()) return;
const rowIndex = getLastVisibleRowIndex(); const rowIndex = getLastVisibleRowIndex();