From d3eb87561e940aacd6aee4a24ba2815cb774e4aa Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 5 Feb 2024 10:00:53 +0100 Subject: [PATCH] Fix styling issue in tag links --- resources/views/livewire/tags/index.blade.php | 2 +- resources/views/livewire/tags/show.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/tags/index.blade.php b/resources/views/livewire/tags/index.blade.php index 221e82a4a..bc8b59bc0 100644 --- a/resources/views/livewire/tags/index.blade.php +++ b/resources/views/livewire/tags/index.blade.php @@ -4,7 +4,7 @@
Available tags:
@forelse ($tags as $oneTag) - {{ $oneTag->name }} @empty
No tags yet defined yet. Go to a resource and add a tag there.
diff --git a/resources/views/livewire/tags/show.blade.php b/resources/views/livewire/tags/show.blade.php index fc1a22313..3532a5adb 100644 --- a/resources/views/livewire/tags/show.blade.php +++ b/resources/views/livewire/tags/show.blade.php @@ -9,7 +9,7 @@
@forelse ($tags as $oneTag) {{ $oneTag->name }} @empty
No tags yet defined yet. Go to a resource and add a tag there.