feat: Add AutoComplete functionality to activity types input
This commit is contained in:
@@ -137,14 +137,19 @@
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label for="date">Activity Types (Comma Seperated)</label>
|
||||
<input
|
||||
type="text"
|
||||
hidden
|
||||
id="activityTypes"
|
||||
bind:value={activityInput}
|
||||
class="input input-bordered w-full max-w-xs"
|
||||
/>
|
||||
<AutoComplete items={activityTypes} bind:selectedItem={selected} />
|
||||
<label for="date">Activity Types (Comma Seperated)</label>
|
||||
<AutoComplete
|
||||
items={activityTypes}
|
||||
bind:selectedItem={selected}
|
||||
bind:displayValue={activityInput}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label for="rating">Rating</label>
|
||||
|
||||
Reference in New Issue
Block a user