I am currently facing an issue with my Ionic 2 app where the divider is only full width on the last element in the list. I would like all elements to have a full width border, but I couldn't find any information about this in the documentation. Any help would be greatly appreciated!
https://i.sstatic.net/j733Y.png
In addition, here is the code snippet I am working with:
<ion-list no-padding="">
<ion-item *ngFor='let like of likes' (click)="goTo(like.qrcode)" text-wrap>
<ion-thumbnail item-left>
<img class="item item-thumbnail-left" [src]="like.logo">
</ion-thumbnail>
<h2>{{like.name}}</h2>
<h3 class="establishment">{{like.type}}<br /></h3>
<p class="establishment">{{like.city}}<br /></p>
<!--<button ion-button clear item-right>View</button>-->
</ion-item>
</ion-list>