1 <div *ngIf="showLinkLimitSets">
2 <div class="col-lg-15 modal-header bg-info d-flex justify-content-center"><h3 class="modal-title mt-3 mb-3">Linked Limit Sets</h3></div>
3 <ng-container *ngIf="getObjectKeys().length > 0">
4 <ng-container *ngFor="let key of getObjectKeys(); let i = index">
5 <div *ngIf="!linkedSetList[i].isDeleted" class="col-lg-15 d-flex justify-content-center">
6 <div *ngIf="linkedSetList[i].created" class="col-lg-2 mt-3 mb-3 form-group form-check">
7 <label for="name">Name</label>
8 <div class="d-flex justify-content-center">
9 <span>{{limitSetNames[linkedSetList[i].linkedLimitSet.limit_set()]}}</span>
12 <div *ngIf="linkedSetList[i].created" class="col-lg-2 mt-3 mb-3 form-group form-check">
13 <label for="{{fallthrough+i}}">Fallthrough</label>
14 <div class="d-flex justify-content-center">
16 class="form-check-input"
18 name="{{fallthrough+i}}"
19 [ngModel]="linkedSetList[i].linkedLimitSet.fallthrough()"
20 (ngModelChange)="linkedSetList[i].linkedLimitSet.fallthrough($event); this.emitLimitSet();"/>
23 <div *ngIf="linkedSetList[i].created" class="col-lg-2 mt-3 mb-3 form-group form-check">
24 <label for="{{active+i}}">Active</label>
25 <div class="d-flex justify-content-center">
27 class="form-check-input"
29 [ngModel]="linkedSetList[i].linkedLimitSet.active()"
30 (ngModelChange)="linkedSetList[i].linkedLimitSet.active($event); this.emitLimitSet();"/>
34 <div *ngIf="linkedSetList[i].created" class="col-lg-2 mt-3 mb-3 form-group form-check">
37 class="btn btn-warning"
38 ng-disabled="!linkedSet"
39 (click)="removeLinkedSet(i)"
40 i18n-title title="Remove">Remove
46 <div class="input-group mt-3">
47 <div class="input-group-prepends col-lg-9">
48 <div class="input-group-text col-lg-4">
49 <label for="linkedLimitName" i18n>Circ Limit Set Name </label>
52 name="linkedLimitName"
55 (onChange)="onChange($event)">
61 (click)="addLinkedSet()"
62 i18n-title title="Add">Add