Browse Source

feat(lib): change conditional in the template

pull/6497/head
KenTandrian 3 weeks ago
parent
commit
fd449891be
  1. 2
      libs/ui/src/lib/tags-selector/tags-selector.component.html

2
libs/ui/src/lib/tags-selector/tags-selector.component.html

@ -2,7 +2,7 @@
<div class="col">
@if (readonly) {
<div class="h5" i18n>Tags</div>
@if (tags?.length > 0) {
@if (tags && tags.length > 0) {
<mat-chip-listbox>
@for (tag of tags; track tag) {
<mat-chip-option disabled>{{ tag.name }}</mat-chip-option>

Loading…
Cancel
Save