adding please select option to query type
This commit is contained in:
parent
f1dac763b9
commit
6bb9e0e9fc
|
@ -141,7 +141,8 @@
|
|||
{/each}
|
||||
</Select>
|
||||
<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>
|
||||
{/each}
|
||||
</Select>
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
parameters: [],
|
||||
fields: {},
|
||||
queryVerb: "read",
|
||||
queryType: "",
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue