Remove queue prefix badges from kiosk service cards.
Deploy Ladill Queue / deploy (push) Successful in 27s
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:
@@ -25,8 +25,6 @@
|
||||
'queues' => $queues->map(fn ($q) => [
|
||||
'id' => $q->id,
|
||||
'name' => $q->name,
|
||||
'prefix' => $q->prefix,
|
||||
'color' => $q->color,
|
||||
])->values()->all(),
|
||||
'collectName' => $settings['collect_name'],
|
||||
'collectPhone' => $settings['collect_phone'],
|
||||
@@ -91,12 +89,7 @@
|
||||
:disabled="loading"
|
||||
@click="selectQueue(queues[0].id)"
|
||||
>
|
||||
<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="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>
|
||||
</button>
|
||||
</div>
|
||||
@@ -111,12 +104,7 @@
|
||||
:disabled="loading"
|
||||
@click="selectQueue(queue.id)"
|
||||
>
|
||||
<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="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>
|
||||
</button>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user