From 727846c2d3a9b6da355859dfc689e5f9dee54234 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 9 Feb 2025 10:05:43 +0100 Subject: [PATCH] Refactoring --- .../lib/tags-selector/tags-selector.component.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 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 4994ed7b4..4f3929423 100644 --- a/libs/ui/src/lib/tags-selector/tags-selector.component.html +++ b/libs/ui/src/lib/tags-selector/tags-selector.component.html @@ -42,11 +42,14 @@ {{ tag.name }} } - @if (tagInputControl.value && hasPermissionToCreateTags) { + + @if (hasPermissionToCreateTags && tagInputControl.value) { - - - Create new tag "{{ tagInputControl.value.trim() }}" + + + Create "{{ + tagInputControl.value.trim() + }}" }