Remove text interpolation from doc routerLink

This commit is contained in:
Michael Shamoon 2022-03-24 08:09:41 -07:00
parent 3360791a31
commit c360d9fa18

@ -11,7 +11,7 @@
</tr>
</thead>
<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.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>