mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
15 lines
500 B
HTML
15 lines
500 B
HTML
<div *ngIf="configurationList?.length > 1" class="search-switch-configuration">
|
|
<h5 id="configuration-switch">{{ 'search.switch-configuration.title' | translate}}</h5>
|
|
|
|
<select class="form-control"
|
|
aria-labelledby="configuration-switch"
|
|
[compareWith]="compare"
|
|
[(ngModel)]="selectedOption"
|
|
(change)="onSelect()">
|
|
<option *ngFor="let option of configurationList;" [ngValue]="option">
|
|
{{option.label | translate}}
|
|
</option>
|
|
</select>
|
|
|
|
</div>
|