Skip to content

Commit

Permalink
Merge pull request primefaces#388 from atretyak1985/issue_#NNTR-320
Browse files Browse the repository at this point in the history
[NNTR-320]P0/P1/P2 tables on RISC Issue Prioritization screen, P2 ends up not s…
  • Loading branch information
Gunnsteinn Hall authored Jan 2, 2020
2 parents b961ddf + deeb594 commit b084933
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/assets/less/tables.less
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,12 @@
}
}

.priority-list-table {
overflow: auto;
max-height: 200px;
margin: 1px;
}

.table-responsive {
margin-top: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion src/organization/issue/issue_dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1 class="panel-title">RISC Issue Prioritization
<div class="grow-2 section-risc-table">
<div *ngFor="let priority of [0, 1, 2]" class="priority-list">
<h2>P{{ priority }} <a class="label label-danger" (click)="clickRISCCategory($event, service.priorityFilterRanges[priority].min, service.priorityFilterRanges[priority].max)" [ngStyle]="{'background': stringUtils.getRISCColor(priorityProps[priority].score)}">{{ itemListResponses[priority] && itemListResponses[priority].total || 0 }} issues</a></h2>
<div class="infinite-scroll" infinite-scroll [infiniteScrollDistance]="2" [immediateCheck]="true" [scrollWindow]="false" (scrolled)="onScrollDown(priority)" style="overflow: auto; max-height: 200px">
<div class="infinite-scroll priority-list-table" infinite-scroll [infiniteScrollDistance]="2" [immediateCheck]="true" [scrollWindow]="false" (scrolled)="onScrollDown(priority)">
<div class="table-responsive" [class.nanitor-hide]="!itemListItems[priority]">
<sortable-table (sortingChanged)="sortingChanged($event, priority)">
<thead *ngIf="itemListItems[priority] && itemListItems[priority].length">
Expand Down

0 comments on commit b084933

Please sign in to comment.