From 72c9347e880a1ef1fcc48e4276a7a44ecd9b25e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robson=20Ten=C3=B3rio?= Date: Fri, 1 Mar 2024 13:35:41 -0300 Subject: [PATCH] Tags: fix android "next" button (#329) --- src/View/Components/Tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View/Components/Tags.php b/src/View/Components/Tags.php index d2feed86..3f8afd82 100644 --- a/src/View/Components/Tags.php +++ b/src/View/Components/Tags.php @@ -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" @@ -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() }" />