Skip to content

Commit

Permalink
LP2091041 Angular Self-Check - Hide Canceled Holds
Browse files Browse the repository at this point in the history
Fixes bug that allowed canceled holds to appear in the Holds View.

Release-note: Hides canceled holds from holds view

Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: John Amundson <[email protected]>
Signed-off-by: Bill Erickson <[email protected]>
  • Loading branch information
tmccanna authored and berick committed Jan 28, 2025
1 parent 20c76b4 commit 0029700
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Open-ILS/src/eg2/src/app/staff/scko/holds.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export class SckoHoldsComponent implements OnInit {

const filters = {
usr_id: this.scko.patronSummary.id,
fulfillment_time: null
fulfillment_time: null,
cancel_time: null
};

let first = true;
Expand Down

0 comments on commit 0029700

Please sign in to comment.