I currently have a list on a Ionic 2 app, and the divider is full width only on the last element. Here is the result :
I'd like all the elements to be with a full width border. Couldn't find anything in the docs about this.. Thank you in advance for your help !
EDIT : Here is my code :
<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>
