1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-21 23:08:02 +00:00

UI improvements

This commit is contained in:
2023-12-22 13:30:03 +01:00
parent db5a526e07
commit d1b1c7daa5
10 changed files with 80 additions and 82 deletions

View File

@ -16,7 +16,7 @@
}
</script>
<Modal title="Export results" width="450px" on:close>
<Modal title="Export results" width="500px" on:close>
<form on:submit|preventDefault={submit}>
<label class="field">
<span class="label">Export</span>
@ -40,7 +40,10 @@
<label class="field">
<span class="label">View to use</span>
<select bind:value={exportInfo.viewKey}>
{#each Object.entries(views.forCollection(collection.hostKey, collection.dbKey, collection.key)) as [ key, { name } ]}
{#each Object.entries(views.forCollection(collection.hostKey, collection.dbKey, collection.key)) as [
key,
{ name },
]}
<option value={key}>{name}</option>
{/each}
</select>