Skip to content

Commit

Permalink
Tags: fix android "next" button (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
robsontenorio authored Mar 1, 2024
1 parent c10d7ba commit 72c9347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/Components/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public function render(): View|Closure|string
class="outline-none mt-1 bg-transparent"
placeholder="{{ $attributes->whereStartsWith('placeholder')->first() }}"
type="text"
enterkeyhint="done"
x-ref="searchInput"
:class="(isReadonly || !focused) && 'w-1'"
:required="isRequired"
Expand All @@ -160,7 +161,6 @@ class="outline-none mt-1 bg-transparent"
@input="focus()"
@click.outside="clear()"
@keydown.enter.prevent="push()"
@keydown.tab.prevent="push()"
@keyup.prevent="if (event.key === ',') { push() }"
/>
</div>
Expand Down

0 comments on commit 72c9347

Please sign in to comment.