Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/1bd62d13d03ec2d14c08a6e4b6e0f082337a0286?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Maybe this will fix

pull/2336/head
Jamie 7 years ago
parent 4cdd0e5875
commit 1bd62d13d0

@ -39,8 +39,8 @@
<div class="form-group" *ngFor="let u of users">
<div class="checkbox">
<input type="checkbox" id="{{u.user.id}}" [(ngModel)]="u.selected" (click)="selectSingleUser(u)">
<label for="{{u.user.id}}">{{u.user.userName}}</label>
<input type="checkbox" id="user{{u.user.id}}" [(ngModel)]="u.selected" (click)="selectSingleUser(u)">
<label for="user{{u.user.id}}">{{u.user.userName}}</label>
</div>
</div>
</div>

Loading…
Cancel
Save