Fix: resolve error in trackBy

This commit is contained in:
shamoon 2025-01-31 00:35:12 -08:00
parent e0ea4a4625
commit ee72e2d1fd
No known key found for this signature in database

View File

@ -32,7 +32,7 @@
{{document.title | documentTitle}}
}
@if (displayFields.includes(DisplayField.TAGS)) {
@for (tagID of document.tags; track t) {
@for (tagID of document.tags; track tagID) {
<pngx-tag [tagID]="tagID" linkTitle="Filter by tag" i18n-linkTitle class="ms-1" (click)="clickTag.emit(tagID);$event.stopPropagation()" [clickable]="clickTag.observers.length"></pngx-tag>
}
}