Skip to content

Commit ce52d9a

Browse files
authored
Merge pull request #914 from bcgov/feature/DSS-1165
DSS-1165 See Reporting Month on the Validation Reports Page
2 parents 5daa0c5 + 7309047 commit ce52d9a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

frontend/src/app/features/components/registration-validation-history/registration-validation-history.component.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ <h2>Validation Reports</h2>
3232
*ngIf="this.sort && this.sort.prop === 'uploadDeliveryType' && this.sort.dir === 'asc'"></i>
3333
</th>
3434

35+
<th class="sortable-header" id="reportPeriodYM_header"
36+
[class.sorted]="this.sort && this.sort.prop === 'reportPeriodYM'"
37+
(click)="onSort('reportPeriodYM')">Reported Month
38+
<i class="pi pi-angle-down"
39+
*ngIf="this.sort && this.sort.prop === 'reportPeriodYM' && this.sort.dir === 'desc'"></i>
40+
<i class="pi pi-angle-up"
41+
*ngIf="this.sort && this.sort.prop === 'reportPeriodYM' && this.sort.dir === 'asc'"></i>
42+
</th>
43+
3544
<th class="sortable-header" id="status_header" [class.sorted]="this.sort && this.sort.prop === 'status'"
3645
(click)="onSort('status')">Status
3746
<i class="pi pi-angle-down"
@@ -95,6 +104,7 @@ <h2>Validation Reports</h2>
95104
<span *ngSwitchDefault>{{ row.uploadDeliveryType }}</span>
96105
</ng-container>
97106
</td>
107+
<td>{{ row.reportPeriodYM }}</td>
98108
<td>
99109
<span *ngIf="row.registrationStatus==='Processed'; then processed; else pending"></span>
100110
<ng-template #processed> <span class="state-processed">{{row.registrationStatus}}</span></ng-template>

0 commit comments

Comments
 (0)