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

index f398e60931c3f2089de6aba3bd21a88d99c83510..305584a643895fa8ef2c3b7a3ddeb4ca1ce6a02e 100644 (file)
@@ -55,7 +55,7 @@
                     }
                     @case (DisplayField.TAGS) {
                       @for (tagID of doc.tags; track tagID) {
-                        <pngx-tag [tagID]="tagID" class="ms-1" (click)="clickTag(tagID, $event)" [clickable]="true" linkTitle="Filter by tag" i18n-title></pngx-tag>
+                        <pngx-tag [tagID]="tagID" class="ms-1 fs-6" (click)="clickTag(tagID, $event)" [clickable]="true" linkTitle="Filter by tag" i18n-title></pngx-tag>
                       }
                     }
                     @case (DisplayField.DOCUMENT_TYPE) {
index 1bcee8a81984bd8bb094cc4be4d724bd7f6d70d8..18baab517a88cf9a2bbc6ef48b3ef7a241099b96 100644 (file)
                     }
                     @if (activeDisplayFields.includes(DisplayField.TAGS)) {
                       @for (tagID of d.tags; track t) {
-                        <pngx-tag [tagID]="tagID" class="ms-1" clickable="true" linkTitle="Filter by tag" i18n-linkTitle (click)="clickTag(tagID);$event.stopPropagation()"></pngx-tag>
+                        <pngx-tag [tagID]="tagID" class="ms-1 fs-6" clickable="true" linkTitle="Filter by tag" i18n-linkTitle (click)="clickTag(tagID);$event.stopPropagation()"></pngx-tag>
                       }
                     }
                   </td>