more fixes regarding empty titles

This commit is contained in:
jonaswinkler
2020-12-16 16:44:54 +01:00
parent a7b6219992
commit 6aab50ed73
5 changed files with 9 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
<tbody>
<tr *ngFor="let doc of documents" routerLink="/documents/{{doc.id}}">
<td>{{doc.created | date}}</td>
<td>{{doc.title}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ml-1"></app-tag>
<td>{{doc.title | documentTitle}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ml-1"></app-tag>
</tr>
</tbody>
</table>