mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Remove text interpolation from doc routerLink
This commit is contained in:
		@@ -11,7 +11,7 @@
 | 
				
			|||||||
      </tr>
 | 
					      </tr>
 | 
				
			||||||
    </thead>
 | 
					    </thead>
 | 
				
			||||||
    <tbody>
 | 
					    <tbody>
 | 
				
			||||||
      <tr *ngFor="let doc of documents" routerLink="/documents/{{doc.id}}">
 | 
					      <tr *ngFor="let doc of documents" [routerLink]="['/', 'documents', doc.id]">
 | 
				
			||||||
        <td>{{doc.created | customDate}}</td>
 | 
					        <td>{{doc.created | customDate}}</td>
 | 
				
			||||||
        <td>{{doc.title | documentTitle}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ms-1" (click)="clickTag(t); $event.stopPropagation();"></app-tag></td>
 | 
					        <td>{{doc.title | documentTitle}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ms-1" (click)="clickTag(t); $event.stopPropagation();"></app-tag></td>
 | 
				
			||||||
      </tr>
 | 
					      </tr>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user