Merge pull request #4245 from stefangross/develop

Fixed issue with CouchPotato not loading profiles
pull/4246/head v4.0.1435
Jamie 4 years ago committed by GitHub
commit f3f86d3243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
<settings-menu> <settings-menu>
</settings-menu> </settings-menu>
<div class="small-middle-container"> <div class="small-middle-container">
<div *ngIf="form"> <div *ngIf="form">
@ -55,7 +55,7 @@
<mat-form-field appearance="outline"> <mat-form-field appearance="outline">
<mat-label>Quality Profiles</mat-label> <mat-label>Quality Profiles</mat-label>
<mat-select formControlName="defaultProfileId"> <mat-select formControlName="defaultProfileId">
<mat-option *ngFor="let profile of profiles" value="{{profile._id}}">{{profile.label}}</mat-option> <mat-option *ngFor="let profile of profiles?.list" value="{{profile._id}}">{{profile.label}}</mat-option>
</mat-select> </mat-select>
<mat-error>A Default Quality Profile is required</mat-error> <mat-error>A Default Quality Profile is required</mat-error>
</mat-form-field> </mat-form-field>

Loading…
Cancel
Save