adding please select option to query type
This commit is contained in:
parent
f1dac763b9
commit
6bb9e0e9fc
|
@ -141,7 +141,8 @@
|
||||||
{/each}
|
{/each}
|
||||||
</Select>
|
</Select>
|
||||||
<Select thin secondary bind:value={query.queryType}>
|
<Select thin secondary bind:value={query.queryType}>
|
||||||
{#each Object.keys(config[query.queryVerb]) as queryType (queryType)}
|
<option value={""}>Please select an option</option>
|
||||||
|
{#each Object.keys(config[query.queryVerb]) as queryType}
|
||||||
<option value={queryType}>{queryType}</option>
|
<option value={queryType}>{queryType}</option>
|
||||||
{/each}
|
{/each}
|
||||||
</Select>
|
</Select>
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
parameters: [],
|
parameters: [],
|
||||||
fields: {},
|
fields: {},
|
||||||
queryVerb: "read",
|
queryVerb: "read",
|
||||||
|
queryType: "",
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue