From eaee87d008f4ae742b117adce80b84e267f6f13c Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 19 Aug 2025 14:15:19 +0200 Subject: [PATCH] fix(tags): update tag display to limit name length and adjust styling --- resources/views/livewire/tags/show.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/tags/show.blade.php b/resources/views/livewire/tags/show.blade.php index f11a6371b..da36a538a 100644 --- a/resources/views/livewire/tags/show.blade.php +++ b/resources/views/livewire/tags/show.blade.php @@ -8,8 +8,8 @@
@forelse ($tags as $oneTag) {{ $oneTag->name }} + class="min-w-32 box-without-bg dark:bg-coolgray-100 dark:text-white font-bold dark:hover:bg-coollabs-100 flex justify-center items-center" + href="{{ route('tags.show', ['tagName' => $oneTag->name]) }}">{{ data_get_str($oneTag, 'name')->limit(30) }} @empty
No tags yet defined yet. Go to a resource and add a tag there.
@endforelse