Make the "Replying to" label clickable

This commit is contained in:
SondreB 2022-12-31 17:48:39 +01:00
parent 18f492a270
commit 382469ab25
No known key found for this signature in database
GPG Key ID: D6CC44C75005FDBF

View File

@ -3,7 +3,7 @@
<!-- <span class="dimmed">{{ likes(event) }} likes&nbsp;&nbsp;{{ dislikes(event) }} dislikes&nbsp;&nbsp;{{ replies(event) }} replies</span><br /> -->
<div *ngIf="repliesTo(event) as replies" class="dimmed clickable">
<br />
<span *ngIf="replies.length > 0">Replying to </span>
<span class="clickable" *ngIf="replies.length > 0">Replying to </span>
<app-reply-list [keys]="replies"></app-reply-list>
</div>
</div>