Quick select for kind.

This commit is contained in:
Ryan Breen
2023-02-12 22:56:20 -05:00
parent e0349bdf00
commit ccc17fbaa8
2 changed files with 23 additions and 0 deletions

View File

@@ -52,6 +52,16 @@
<input type="date" id="toCreatedAt" x-model="toCreatedAt" class="input" @change="reload">
</div>
<div x-show="view === 'kind'">
<label for="kindShortcut">Quick Select</label>
<select id="kindShortcut" class="input" @change="quickKindSelect" x-model="quickKind">
<option></option>
<template x-for="k in kinds">
<option :value="k[0]" x-text="k[1]"></option>
</template>
</select>
</div>
<div x-show="view === 'kind'">
<label for="fromKind">From</label>
<input type="number" id="fromKind" x-model.number="fromKind" class="input" @change="reload">