remove thumbnail tag so image scales properly to be visible in the post issue #73
This commit is contained in:
parent
3b13d7e5ba
commit
03a6e19b5d
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@
|
|||
<div *ngIf="post.raw">
|
||||
<div *ngFor="let r of post.raw">
|
||||
<div *ngIf="r.type == 'io.pnut.core.oembed'">
|
||||
<ion-item><ion-thumbnail><img src="{{ r.value.thumbnail_url || r.value.url }}" (click)="showImage(r.value.url)"></ion-thumbnail></ion-item>
|
||||
<ion-item><img src="{{ r.value.thumbnail_url || r.value.url }}" (click)="showImage(r.value.url)"></ion-item>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue