Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/39bfdf7bcbeb6d954d01f77d6e9120a0e06ac69b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
10 additions and
6 deletions
@ -14,7 +14,7 @@
< ng-container matColumnDef = "actions" >
< th mat-header-cell * matHeaderCellDef > < / th >
< td mat-cell * matCellDef = "let element" >
< button mat-raised-button color = "accent" [ routerLink ] = " [ element . providerId ] " > {{ 'Issues.Details' | translate}}< / button >
< a mat-raised-button color = "accent" [ routerLink ] = " [ element . providerId ] " > {{ 'Issues.Details' | translate}}< / a >
< / td >
< / ng-container >
@ -59,7 +59,7 @@
< ng-container matColumnDef = "actions" >
< th mat-header-cell * matHeaderCellDef > < / th >
< td mat-cell * matCellDef = "let element" >
< button mat-raised-button color = "accent" [ routerLink ] = " ' / details / artist / ' + element . foreignArtistId " > {{ 'Requests.Details' | translate}}< / button >
< a mat-raised-button color = "accent" [ routerLink ] = " ' / details / artist / ' + element . foreignArtistId " > {{ 'Requests.Details' | translate}}< / a >
< button mat-raised-button color = "warn" ( click ) = " openOptions ( element ) " * ngIf = "isAdmin || ( manageOwnRequests && element.requestedUser?.userName == userName )" > {{ 'Requests.Options' | translate}}< / button >
< / td >
< / ng-container >
@ -83,7 +83,7 @@
< ng-container matColumnDef = "actions" >
< th mat-header-cell * matHeaderCellDef > < / th >
< td mat-cell * matCellDef = "let element" >
< button id = "detailsButton{{element.id}}" mat-raised-button color = "accent" [ routerLink ] = " ' / details / movie / ' + element . theMovieDbId " > {{ 'Requests.Details' | translate}}< / button >
< a id = "detailsButton{{element.id}}" mat-raised-button color = "accent" [ routerLink ] = " ' / details / movie / ' + element . theMovieDbId " > {{ 'Requests.Details' | translate}}< / a >
< button id = "optionsButton{{element.id}}" mat-raised-button color = "warn" ( click ) = " openOptions ( element ) " * ngIf = "isAdmin || ( manageOwnRequests && element.requestedUser?.userName == userName ) " > {{ 'Requests.Options' | translate}}< / button >
< / td >
< / ng-container >
@ -63,7 +63,7 @@
< ng-container matColumnDef = "actions" >
< th mat-header-cell * matHeaderCellDef > < / th >
< td mat-cell * matCellDef = "let element" >
< button id = "detailsButton{{element.id}}" mat-raised-button color = "accent" [ routerLink ] = " ' / details / tv / ' + element . parentRequest . externalProviderId " > {{'Requests.Details' | translate}}< / button>
< a id = "detailsButton{{element.id}}" mat-raised-button color = "accent" [ routerLink ] = " ' / details / tv / ' + element . parentRequest . externalProviderId " > {{'Requests.Details' | translate}}< / a>
< button id = "optionsButton{{element.id}}" mat-raised-button color = "warn" ( click ) = " openOptions ( element ) " * ngIf = "isAdmin" > {{'Requests.Options' | translate}}< / button >
< / td >
< / ng-container >
@ -2,7 +2,7 @@
< div class = "buttons" >
< button type = "button" mat-raised-button color = "primary" data-test = "adduserbtn" [ routerLink ] = " [ ' / usermanagement / user ' ] " > Add User To Ombi< / button >
< a type = "button" mat-raised-button color = "primary" data-test = "adduserbtn" [ routerLink ] = " [ ' / usermanagement / user ' ] " > Add User To Ombi< / a >
< button type = "button" style = "float:right;" mat-raised-button color = "primary" ( click ) = " showBulkEdit = !showBulkEdit" [ disabled ] = " this . selection . selected . length < = 0 " > Bulk Edit< / button >
@ -105,7 +105,7 @@
< ng-container matColumnDef = "actions" >
< th mat-header-cell * matHeaderCellDef > < / th >
< td mat-cell * matCellDef = "let u" >
< button id = "edit{{u.userName}}" mat-raised-button color = "accent" [ routerLink ] = " [ ' / usermanagement / user / ' + u . id ] " > Edit< / button >
< a id = "edit{{u.userName}}" mat-raised-button color = "accent" [ routerLink ] = " [ ' / usermanagement / user / ' + u . id ] " > Edit< / a >
< button * ngIf = "!u.hasLoggedIn" mat-raised-button color = "accent" ( click ) = " welcomeEmail ( u ) " [ disabled ] = " ! applicationUrl " > < i class = "far fa-paper-plane" > < / i > Welcome< / button >
< / td >
< / ng-container >
@ -142,6 +142,10 @@
background-color : $ombi-active ;
}
a . mat-raised-button {
text-decoration : none ;
}
hr {
border-top : 1 px solid $accent-dark ;
}