Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/870eec17c5b3b4a143f662a358838f2718a4fb66
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
2 deletions
@ -215,6 +215,13 @@
< p-paginator [ rows ] = " 10 " [ totalRecords ] = " totalMovies " ( onPageChange ) = " paginate ( $ event ) " > < / p-paginator >
< / div >
< p-confirmDialog # cd header = "Confirmation" icon = "pi pi-exclamation-triangle" >
< input > < / input >
< p-footer >
< button type = "button" pButton icon = "pi pi-times" label = "No" ( click ) = " cd . reject ( ) " > < / button >
< button type = "button" pButton icon = "pi pi-check" label = "Yes" ( click ) = " cd . accept ( ) " > < / button >
< / p-footer >
< / p-confirmDialog >
< issue-report [ movie ] = " true " [ visible ] = " issuesBarVisible " ( visibleChange ) = " issuesBarVisible = $event;" [ title ] = " issueRequest ? . title "
[issueCategory]="issueCategorySelected" [id]="issueRequest?.id" [providerId]="issueProviderId">< / issue-report >
@ -4,7 +4,6 @@ import { DomSanitizer } from "@angular/platform-browser";
import { Subject } from "rxjs" ;
import { debounceTime , distinctUntilChanged } from "rxjs/operators" ;
import { ConfirmationService } from "primeng/primeng" ;
import { AuthService } from "../auth/auth.service" ;
import { FilterType , IFilter , IIssueCategory , IMovieRequests , IPagenator , IRadarrProfile , IRadarrRootFolder , OrderType } from "../interfaces" ;
import { NotificationService , RadarrService , RequestService } from "../services" ;
@ -6,7 +6,7 @@ import { OrderModule } from "ngx-order-pipe";
import { InfiniteScrollModule } from "ngx-infinite-scroll" ;
import { ButtonModule , DialogModule, PaginatorModule } from "primeng/primeng" ;
import { ButtonModule , ConfirmDialogModule, DialogModule, PaginatorModule } from "primeng/primeng" ;
import { MovieRequestsComponent } from "./movierequests.component" ;
import { MusicRequestsComponent } from "./music/musicrequests.component" ;
// Request
@ -38,6 +38,7 @@ const routes: Routes = [
OrderModule ,
PaginatorModule ,
TooltipModule ,
ConfirmDialogModule ,
] ,
declarations : [
RequestComponent ,