mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 17:06:01 +00:00
perspective rows WIP
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
|
||||
for (const child of node.childNodes) {
|
||||
if (child.isExpandable && child.isChecked) {
|
||||
loadLevelData(child, rows);
|
||||
await loadLevelData(child, rows);
|
||||
// loadProps.push(child.getNodeLoadProps());
|
||||
}
|
||||
}
|
||||
@@ -86,7 +86,7 @@
|
||||
<th rowspan={column.rowSpan}>{column.title}</th>
|
||||
{/if}
|
||||
{#if column.showParent(columnLevel)}
|
||||
<th colspan={column.getColSpan(columnLevel)}>{column.parentColumns[columnLevel]}</th>
|
||||
<th colspan={column.getColSpan(columnLevel)}>{column.getParentName(columnLevel)}</th>
|
||||
{/if}
|
||||
{/each}
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user