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