mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 18:56:00 +00:00
fixed loading keys in redis
This commit is contained in:
@@ -17,11 +17,24 @@
|
||||
export let model: DbKeysTreeModel;
|
||||
export let changeModel: DbKeysChangeModelFunction;
|
||||
|
||||
export let parentRoots = [];
|
||||
|
||||
$: items = model.childrenByKey[root] ?? [];
|
||||
</script>
|
||||
|
||||
{#each items as item}
|
||||
<DbKeysTreeNode {conid} {database} {root} {connection} {item} {filter} {indentLevel} {model} {changeModel} />
|
||||
<DbKeysTreeNode
|
||||
{conid}
|
||||
{database}
|
||||
{root}
|
||||
{connection}
|
||||
{item}
|
||||
{filter}
|
||||
{indentLevel}
|
||||
{model}
|
||||
{changeModel}
|
||||
parentRoots={[...parentRoots, root]}
|
||||
/>
|
||||
{/each}
|
||||
|
||||
{#if model.dirsByKey[root]?.shouldLoadNext}
|
||||
|
||||
Reference in New Issue
Block a user