mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
commit
8055294ffa
3 changed files with 17 additions and 1 deletions
13
src/Ombi/ClientApp/src/app/issues/issuestable.component.scss
Normal file
13
src/Ombi/ClientApp/src/app/issues/issuestable.component.scss
Normal file
|
@ -0,0 +1,13 @@
|
|||
.small-middle-container {
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.table thead th{
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
|
||||
.table th{
|
||||
border-top:none;
|
||||
}
|
|
@ -6,6 +6,7 @@ import { IIssuesSummary, IPagenator, IssueStatus } from "../interfaces";
|
|||
@Component({
|
||||
selector: "issues-table",
|
||||
templateUrl: "issuestable.component.html",
|
||||
styleUrls: ['issuestable.component.scss']
|
||||
})
|
||||
export class IssuesTableComponent {
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ export class TvGridComponent implements OnInit, AfterViewInit {
|
|||
public currentFilter: RequestFilterType = RequestFilterType.All;
|
||||
|
||||
public RequestFilter = RequestFilterType;
|
||||
public manageOwnRequests: boolean;
|
||||
|
||||
private storageKey = "Tv_DefaultRequestListSort";
|
||||
private storageKeyOrder = "Tv_DefaultRequestListSortOrder";
|
||||
|
@ -107,7 +108,8 @@ export class TvGridComponent implements OnInit, AfterViewInit {
|
|||
this.ref.detectChanges();
|
||||
};
|
||||
|
||||
this.onOpenOptions.emit({request: request, filter: filter, onChange});
|
||||
const data = { request: request, filter: filter, onChange: onChange, manageOwnRequests: this.manageOwnRequests, isAdmin: this.isAdmin };
|
||||
this.onOpenOptions.emit(data);
|
||||
}
|
||||
|
||||
private loadData(): Observable<IRequestsViewModel<IChildRequests>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue