]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: storage paths link incorrect in dashboard widget (#4878)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Thu, 7 Dec 2023 15:23:22 +0000 (07:23 -0800)
committerGitHub <noreply@github.com>
Thu, 7 Dec 2023 15:23:22 +0000 (15:23 +0000)
src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html

index 60affe379fa6bc61967cb2be076ca82c35424f58..1f825369448deaf563729b6ca657683978ffc221 100644 (file)
@@ -63,7 +63,7 @@
         </a>
       </ng-container>
       <ng-container *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.StoragePath }">
-        <a *ngIf="statistics?.storage_path_count > 0" class="list-group-item d-flex justify-content-between align-items-center" routerLink="/documenttypes/">
+        <a *ngIf="statistics?.storage_path_count > 0" class="list-group-item d-flex justify-content-between align-items-center" routerLink="/storagepaths/">
           <ng-container i18n>Storage Paths</ng-container>:
           <span class="badge bg-secondary text-light rounded-pill">{{statistics?.storage_path_count | number}}</span>
         </a>