mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Merge pull request #4245 from stefangross/develop
Fixed issue with CouchPotato not loading profiles
This commit is contained in:
commit
f3f86d3243
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue