Skip to content

Commit

Permalink
Fixed issue with couchpotato profiles not loading correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
grimsan55 committed Jul 3, 2021
1 parent 5db455e commit a9bbd55
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<settings-menu>
<settings-menu>
</settings-menu>
<div class="small-middle-container">
<div *ngIf="form">
Expand Down Expand Up @@ -55,7 +55,7 @@
<mat-form-field appearance="outline">
<mat-label>Quality Profiles</mat-label>
<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-error>A Default Quality Profile is required</mat-error>
</mat-form-field>
Expand Down Expand Up @@ -85,4 +85,4 @@
</form>
</fieldset>
</div>
</div>
</div>

0 comments on commit a9bbd55

Please sign in to comment.