]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: fix tag track expression in lists
authorshamoon <4887959+shamoon@users.noreply.github.com>
Tue, 11 Mar 2025 20:33:40 +0000 (13:33 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Tue, 11 Mar 2025 20:33:40 +0000 (13:33 -0700)
src-ui/src/app/components/document-list/document-list.component.html

index 18baab517a88cf9a2bbc6ef48b3ef7a241099b96..e5080509883c50c288c72718262c36948d4adcb1 100644 (file)
                       </div>
                     }
                     @if (activeDisplayFields.includes(DisplayField.TAGS)) {
-                      @for (tagID of d.tags; track t) {
+                      @for (tagID of d.tags; track tagID) {
                         <pngx-tag [tagID]="tagID" class="ms-1 fs-6" clickable="true" linkTitle="Filter by tag" i18n-linkTitle (click)="clickTag(tagID);$event.stopPropagation()"></pngx-tag>
                       }
                     }