Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <div class="row mt-1">
  2. <label uiLabel for="seal"></label>
  3. <ng-container *ngFor="let seals of form.get('seal')['controls']; let indexGroup = index">
  4. <div class="form-group p-2">
  5. <label uiLabel textAlign="left" [autoWidth]="true" for="seals">{{seals.controls.name.value}}</label>
  6. <button type="button" uiButton uiFaIcon icon="times" (click)="deleteSeal()"></button>
  7. </div>
  8. </ng-container>
  9. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement