1 <div class="container-fluid">
4 <div class="col-sm-1 d-flex float-end">
5 <label for="refreshInterval"
6 class="col-form-label my-0 mx-2 float-end"
8 <select id="refreshInterval"
10 class="form-select float-end"
11 (change)="changeRefreshInterval($event.target.value)"
12 [(ngModel)]="selectedInterval">
13 <option *ngFor="let key of intervalKeys"
14 [value]="intervalList[key]">{{ key }}</option>