mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Fixed the Radarr V3 integration
This commit is contained in:
parent
282f5a5d4e
commit
98b65d43a4
3 changed files with 19 additions and 3 deletions
|
@ -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; }
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue