Hide 'Body' tab for REST API datasources when using a GET query

This commit is contained in:
Andrew Kingston 2021-12-16 10:03:59 +00:00
parent 1a5ee47e9e
commit f4add0a180
1 changed files with 12 additions and 10 deletions

View File

@ -260,16 +260,18 @@
headings
/>
</Tab>
<Tab title="Body">
<RadioGroup
bind:value={query.fields.bodyType}
options={isGet ? [bodyTypes[0]] : bodyTypes}
direction="horizontal"
getOptionLabel={option => option.name}
getOptionValue={option => option.value}
/>
<RestBodyInput bind:bodyType={query.fields.bodyType} bind:query />
</Tab>
{#if query?.queryVerb !== "read"}
<Tab title="Body">
<RadioGroup
bind:value={query.fields.bodyType}
options={isGet ? [bodyTypes[0]] : bodyTypes}
direction="horizontal"
getOptionLabel={option => option.name}
getOptionValue={option => option.value}
/>
<RestBodyInput bind:bodyType={query.fields.bodyType} bind:query />
</Tab>
{/if}
<Tab title="Transformer">
<Layout noPadding>
{#if !$flags.queryTransformerBanner}