Fixing issue discovered by cypress test case and updating dynamic variable view to hide table when there are none.
This commit is contained in:
parent
18ff7a9cfb
commit
e32869b100
|
@ -36,6 +36,7 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
{#if dynamicVariables.length > 0}
|
||||||
<Table
|
<Table
|
||||||
on:click={({ detail }) => onClick(detail)}
|
on:click={({ detail }) => onClick(detail)}
|
||||||
schema={dynamicVariableSchema}
|
schema={dynamicVariableSchema}
|
||||||
|
@ -48,4 +49,6 @@
|
||||||
{ column: "value", component: CodeRenderer },
|
{ column: "value", component: CodeRenderer },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Body size="S" />
|
{:else}
|
||||||
|
<Body size="S"><i>No dynamic variables specified.</i></Body>
|
||||||
|
{/if}
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
rows,
|
rows,
|
||||||
info,
|
info,
|
||||||
schema,
|
schema,
|
||||||
rowsLength: rows.length,
|
rowsLength: rows?.length,
|
||||||
|
|
||||||
// Undocumented properties. These aren't supposed to be used in builder
|
// Undocumented properties. These aren't supposed to be used in builder
|
||||||
// bindings, but are used internally by other components
|
// bindings, but are used internally by other components
|
||||||
|
|
Loading…
Reference in New Issue