1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Merge pull request #1563 from Budibase/fix/query-action

Fix execute query action not working
This commit is contained in:
Andrew Kingston 2021-05-26 09:28:02 +01:00 committed by GitHub
commit 6b8a2b0fc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,18 +24,18 @@
}
</script>
<Layout noGap noPadding>
<Label>Datasource</Label>
<Layout>
<Select
label="Datasource"
bind:value={parameters.datasourceId}
option={$datasources.list}
options={$datasources.list}
getOptionLabel={source => source.name}
getOptionValue={source => source._id}
/>
{#if parameters.datasourceId}
<Label>Query</Label>
<Select
label="Query"
bind:value={parameters.queryId}
options={$queries.list.filter(
query => query.datasourceId === datasource._id
@ -46,17 +46,19 @@
{/if}
{#if query?.parameters?.length > 0}
<ParameterBuilder
bind:customParams={parameters.queryParams}
parameters={query.parameters}
bindings={bindableProperties}
/>
<IntegrationQueryEditor
height={200}
{query}
schema={fetchQueryDefinition(query)}
editable={false}
{datasource}
/>
<div>
<ParameterBuilder
bind:customParams={parameters.queryParams}
parameters={query.parameters}
bindings={bindableProperties}
/>
<IntegrationQueryEditor
height={200}
{query}
schema={fetchQueryDefinition(query)}
editable={false}
{datasource}
/>
</div>
{/if}
</Layout>