From 11866c91753c0c6c7463038afabd3bf580a9b36e Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 1 Aug 2026 16:26:14 +0200 Subject: [PATCH] Improve style of read-only tags --- .../src/lib/tags-selector/tags-selector.component.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.html b/libs/ui/src/lib/tags-selector/tags-selector.component.html index bd56e93185..9bede09a73 100644 --- a/libs/ui/src/lib/tags-selector/tags-selector.component.html +++ b/libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -1,20 +1,20 @@
@if (readonly) { -
Tags
+
Tags
@if ( tagsSelected().length > 0 || (tagsReadOnly && tagsReadOnly.length > 0) ) { - + @if (tagsReadOnly) { @for (tag of tagsReadOnly; track tag.id) { - {{ tag.name }} + {{ tag.name }} } } @for (tag of tagsSelected(); track tag.id) { - {{ tag.name }} + {{ tag.name }} } - + } @else {
}