Remove queue prefix badges from kiosk service cards.
Deploy Ladill Queue / deploy (push) Successful in 27s

Service selection shows the service name only, without the colored letter icon.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-29 23:38:13 +00:00
co-authored by Cursor
parent 4a608fedf2
commit c3e1609578
+2 -14
View File
@@ -25,8 +25,6 @@
'queues' => $queues->map(fn ($q) => [ 'queues' => $queues->map(fn ($q) => [
'id' => $q->id, 'id' => $q->id,
'name' => $q->name, 'name' => $q->name,
'prefix' => $q->prefix,
'color' => $q->color,
])->values()->all(), ])->values()->all(),
'collectName' => $settings['collect_name'], 'collectName' => $settings['collect_name'],
'collectPhone' => $settings['collect_phone'], 'collectPhone' => $settings['collect_phone'],
@@ -91,12 +89,7 @@
:disabled="loading" :disabled="loading"
@click="selectQueue(queues[0].id)" @click="selectQueue(queues[0].id)"
> >
<span <span class="text-xl font-bold text-slate-900" x-text="queues[0].name"></span>
class="flex h-16 w-16 items-center justify-center rounded-2xl text-xl font-bold text-white transition group-hover:brightness-110"
:style="'background-color:' + (queues[0].color || '#4f46e5')"
x-text="queues[0].prefix"
></span>
<span class="mt-5 text-xl font-bold text-slate-900" x-text="queues[0].name"></span>
<span class="mt-1 text-sm text-slate-500">Tap to get ticket</span> <span class="mt-1 text-sm text-slate-500">Tap to get ticket</span>
</button> </button>
</div> </div>
@@ -111,12 +104,7 @@
:disabled="loading" :disabled="loading"
@click="selectQueue(queue.id)" @click="selectQueue(queue.id)"
> >
<span <span class="text-xl font-bold text-slate-900" x-text="queue.name"></span>
class="flex h-16 w-16 items-center justify-center rounded-2xl text-xl font-bold text-white transition group-hover:brightness-110"
:style="'background-color:' + (queue.color || '#4f46e5')"
x-text="queue.prefix"
></span>
<span class="mt-5 text-xl font-bold text-slate-900" x-text="queue.name"></span>
<span class="mt-1 text-sm text-slate-500">Tap to get ticket</span> <span class="mt-1 text-sm text-slate-500">Tap to get ticket</span>
</button> </button>
</template> </template>