remove thumbnail tag so image scales properly to be visible in the post issue #73

This commit is contained in:
Morgan McMillian 2018-09-02 18:23:11 -07:00
parent 3b13d7e5ba
commit 03a6e19b5d

View file

@ -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>