From fd449891be8beb92e9ef80b1949c94ddf702e707 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 8 Mar 2026 13:10:42 +0700 Subject: [PATCH] feat(lib): change conditional in the template --- libs/ui/src/lib/tags-selector/tags-selector.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 c3c02f3c7..82f465555 100644 --- a/libs/ui/src/lib/tags-selector/tags-selector.component.html +++ b/libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -2,7 +2,7 @@
@if (readonly) {
Tags
- @if (tags?.length > 0) { + @if (tags && tags.length > 0) { @for (tag of tags; track tag) { {{ tag.name }}