diff --git a/resources/views/livewire/project/shared/tags.blade.php b/resources/views/livewire/project/shared/tags.blade.php
index 866e60cdd..2d4240dfa 100644
--- a/resources/views/livewire/project/shared/tags.blade.php
+++ b/resources/views/livewire/project/shared/tags.blade.php
@@ -1,6 +1,6 @@
Tags
-
+
@if (data_get($this->resource, 'tags'))
@forelse (data_get($this->resource,'tags') as $tagId => $tag)
0)
Exisiting Tags
Click to add quickly
-
+
@foreach ($tags as $tag)
{{ $tag->name }}
diff --git a/resources/views/livewire/tags/show.blade.php b/resources/views/livewire/tags/show.blade.php
index bd1c4901f..1a778f024 100644
--- a/resources/views/livewire/tags/show.blade.php
+++ b/resources/views/livewire/tags/show.blade.php
@@ -8,8 +8,7 @@
Available tags
@forelse ($tags as $oneTag)
-
{{ $oneTag->name }}
@empty
No tags yet defined yet. Go to a resource and add a tag there.
@@ -28,19 +27,23 @@