Commits
Tim Donohue authored and GitHub committed 497ab09cfa9 Merge
1 1 | <div> |
2 2 | <fieldset class="d-flex"> |
3 - | <legend [id]="'legend_' + model.id" [ngClass]="[getClass('element', 'label'), getClass('grid', 'label')]"> |
3 + | <legend *ngIf="!model.repeatable" [id]="'legend_' + model.id" [ngClass]="[getClass('element', 'label'), getClass('grid', 'label')]"> |
4 4 | {{model.placeholder}} <span *ngIf="model.required">*</span> |
5 5 | </legend> |
6 6 | <ds-number-picker |
7 7 | tabindex="1" |
8 8 | [id]="model.id + '_year'" |
9 9 | [disabled]="model.disabled" |
10 10 | [min]="minYear" |
11 11 | [max]="maxYear" |
12 12 | [name]="'year'" |
13 13 | [size]="4" |