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

adding please select option to query type

This commit is contained in:
Martin McKeaveney 2021-01-22 12:11:13 +00:00
parent 313e91c1bb
commit 46a04bbf9d
2 changed files with 3 additions and 1 deletions

View file

@ -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>

View file

@ -25,6 +25,7 @@
parameters: [],
fields: {},
queryVerb: "read",
queryType: "",
}
</script>