1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Merge pull request #6557 from Budibase/remove-datasource-from-schema-picker

Data providers are excluded from the Form Schema picker
This commit is contained in:
deanhannigan 2022-07-15 09:14:39 +01:00 committed by GitHub
commit d71bf2c9cc
2 changed files with 9 additions and 2 deletions

View file

@ -25,6 +25,7 @@
export let otherSources
export let showAllQueries
export let bindings = []
export let showDataProviders = true
const dispatch = createEventDispatcher()
const arrayTypes = ["attachment", "array"]
@ -258,7 +259,7 @@
{/each}
</ul>
{/if}
{#if dataProviders?.length}
{#if showDataProviders && dataProviders?.length}
<Divider size="S" />
<div class="title">
<Heading size="XS">Data Providers</Heading>

View file

@ -4,4 +4,10 @@
const otherSources = [{ name: "Custom", label: "Custom" }]
</script>
<DataSourceSelect on:change {...$$props} showAllQueries={true} {otherSources} />
<DataSourceSelect
on:change
{...$$props}
showAllQueries={true}
showDataProviders={false}
{otherSources}
/>