2018-04-09 12:04:28 +02:00

9 lines
315 B
HTML

<ion-row *ngIf="actions && actions.length > 0">
<ion-col *ngFor="let action of actions">
<button ion-button icon-left clear small (click)="action.action()">
<ion-icon name="{{action.icon}}"></ion-icon>
{{ action.message | translate }}
</button>
</ion-col>
</ion-row>