fixed hyperlinks on posts in conversation view #34
This commit is contained in:
parent
dde9644f48
commit
471a255b78
1 changed files with 4 additions and 1 deletions
|
@ -34,7 +34,10 @@
|
||||||
</ion-note>
|
</ion-note>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
<ion-card-content>
|
<ion-card-content>
|
||||||
<p>{{ post.is_deleted ? '{post deleted}' : post.content.text }}</p>
|
<div *ngIf="post.is_deleted; else renderBlock"></div>
|
||||||
|
<ng-template #renderBlock >
|
||||||
|
<div [innerHTML]="post.content.html | parser"></div>
|
||||||
|
</ng-template>
|
||||||
</ion-card-content>
|
</ion-card-content>
|
||||||
<div *ngIf="post.raw">
|
<div *ngIf="post.raw">
|
||||||
<div *ngFor="let r of post.raw">
|
<div *ngFor="let r of post.raw">
|
||||||
|
|
Reference in a new issue