Fixed the Radarr V3 integration

This commit is contained in:
tidusjar 2020-06-11 10:49:34 +01:00
commit 98b65d43a4
3 changed files with 19 additions and 3 deletions

View file

@ -7,7 +7,6 @@ namespace Ombi.Api.Radarr.Models
public RadarrAddMovieResponse()
{
images = new List<string>();
}
public RadarrError Error { get; set; }
public RadarrAddOptions addOptions { get; set; }
@ -16,7 +15,6 @@ namespace Ombi.Api.Radarr.Models
public int qualityProfileId { get; set; }
public bool monitored { get; set; }
public int tmdbId { get; set; }
public List<string> images { get; set; }
public string titleSlug { get; set; }
public int year { get; set; }
public string minimumAvailability { get; set; }

View file

@ -1,6 +1,6 @@
<div class="small-middle-container" *ngIf="actorCredits">
<div *ngIf="loadingFlag" class="row justify-content-md-center top-spacing loading-spinner">
<div *ngIf="loadingFlag" class="row justify-content-md-center top-space loading-spinner">
<mat-spinner [color]="'accent'"></mat-spinner>
</div>
<div *ngIf="discoverResults" class="row full-height">

View file

@ -16,6 +16,24 @@
}
}*/
@media (max-width: 978px) {
.top-space {
padding-top: 2%;
}
.modal-panel {
max-height: 100vh !important;
max-width: 100vw !important;
height: 100%;
}
}
@media (min-width: 979px) {
.top-space {
padding-top: 2%;
}
}
html,
body {
min-height: 100vh;