fixed loading keys in redis

This commit is contained in:
SPRINX0\prochazka
2025-05-12 10:28:28 +02:00
parent 8c1b51b7e9
commit 541af0b77e
4 changed files with 24 additions and 5 deletions

View File

@@ -31,6 +31,7 @@
export let item;
export let indentLevel = 0;
export let filter;
export let parentRoots = [];
export let model: DbKeysTreeModel;
export let changeModel: DbKeysChangeModelFunction;
@@ -179,7 +180,7 @@
{item.text}
</div> -->
{#if isExpanded}
{#if isExpanded && !parentRoots.includes(item.root)}
<DbKeysSubTree
{conid}
{database}
@@ -189,5 +190,6 @@
{filter}
{model}
{changeModel}
{parentRoots}
/>
{/if}