diff --git a/src/app/launcher/launcher.component.html b/src/app/launcher/launcher.component.html index 91a0e4084281a3ffc371f296f18c9f777d50c6aa..f41292398e1a190366da39f00b567daabdcc04c0 100644 --- a/src/app/launcher/launcher.component.html +++ b/src/app/launcher/launcher.component.html @@ -44,11 +44,15 @@ Advanced </mat-expansion-panel-header> Select an API server + <div style="width: 100%"> + <mat-form-field> <mat-select [ngModel]="selectedApiServer" (selectionChange)="backendSelectionService.setApiServer($event.value)"> <mat-option *ngFor="let apis of backendSelectionService.apiservers|async" [value]="apis"> {{ apis.name }} </mat-option> </mat-select> + </mat-form-field> + </div> <button type="button" mat-button (click)="fileInput.click()">Load Config</button> <input hidden (change)="loadConfig($event)" accept=".json" #fileInput type="file" id="file"> <button mat-button (click)=resetConfig()>Reset Config</button>