Skip to content

Commit a0f36bc

Browse files
committed
LP#2111291 follow-up: ng lint fixes
Signed-off-by: Jane Sandberg <[email protected]>
1 parent 871f747 commit a0f36bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ export class HoldComponent implements OnInit {
493493
// Exclude hold notification from empty quote check because
494494
// a user may wish to have no hold notification options which
495495
// is stored as '""'
496-
if (value === '' || value === null ||
497-
(value === '""' && name != 'opac.hold_notify' )) { return; }
496+
if (value === '' || value === null ||
497+
(value === '""' && name !== 'opac.hold_notify' )) { return; }
498498

499499
// When fleshing 'settings' on the actor.usr object,
500500
// we're grabbing the raw JSON values.

0 commit comments

Comments
 (0)