1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Revert hiding body tab for GETs since already implemented in another pending PR

This commit is contained in:
Andrew Kingston 2021-12-16 10:11:49 +00:00
parent 510a11e080
commit 3018438020

View file

@ -260,18 +260,16 @@
headings
/>
</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="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>
<Tab title="Transformer">
<Layout noPadding>
{#if !$flags.queryTransformerBanner}