Review comments.
This commit is contained in:
parent
8254880fa8
commit
58c5ddaa90
|
@ -181,7 +181,7 @@
|
||||||
<Input label="From table column" bind:value={fromRelationship.name} />
|
<Input label="From table column" bind:value={fromRelationship.name} />
|
||||||
<Input label="To table column" bind:value={toRelationship.name} />
|
<Input label="To table column" bind:value={toRelationship.name} />
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
{#if originalFromName !== null}
|
{#if originalFromName != null}
|
||||||
<Button warning text on:click={deleteRelationship}>Delete</Button>
|
<Button warning text on:click={deleteRelationship}>Delete</Button>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -179,7 +179,7 @@
|
||||||
{/if}
|
{/if}
|
||||||
<div>
|
<div>
|
||||||
<Button primary on:click={updateDatasourceSchema}>
|
<Button primary on:click={updateDatasourceSchema}>
|
||||||
Fetch Tables From Database
|
Fetch tables from database
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -203,12 +203,12 @@
|
||||||
<div class="query-header">
|
<div class="query-header">
|
||||||
<Heading size="S">Relationships</Heading>
|
<Heading size="S">Relationships</Heading>
|
||||||
<Button primary on:click={() => openRelationshipModal()}
|
<Button primary on:click={() => openRelationshipModal()}
|
||||||
>Create Relationship</Button
|
>Create relationship</Button
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<Body>
|
<Body>
|
||||||
Tell budibase how your tables are related to get even more smart
|
Tell budibase how your tables are related to get even more smart
|
||||||
features.
|
features.
|
||||||
</Body>
|
</Body>
|
||||||
{/if}
|
{/if}
|
||||||
<div class="query-list">
|
<div class="query-list">
|
||||||
|
|
Loading…
Reference in New Issue