Skip to content

Commit

Permalink
Fix: Display guarantees in action log (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
RikudouSage committed Sep 13, 2023
1 parent 05e2374 commit 2961de1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<ng-container *ngIf="item.report_type === ActionLogReportType.Censure">Censure</ng-container>
<ng-container *ngIf="item.report_type === ActionLogReportType.Endorsement">Endorsement</ng-container>
<ng-container *ngIf="item.report_type === ActionLogReportType.Hesitation">Hesitation</ng-container>
<ng-container *ngIf="item.report_type === ActionLogReportType.Guarantee">Guarantee</ng-container>
</td>
<td>
<ng-container *ngIf="item.report_activity === ActionLogReportActivity.Added">Created</ng-container>
Expand Down
1 change: 1 addition & 0 deletions src/app/response/action-log.response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export enum ActionLogReportType {
Censure = 'CENSURE',
Endorsement = 'ENDORSEMENT',
Hesitation = 'HESITATION',
Guarantee = 'GUARANTEE',
}

export enum ActionLogReportActivity {
Expand Down

0 comments on commit 2961de1

Please sign in to comment.