From: Bill Erickson Date: Wed, 5 Aug 2020 15:41:14 +0000 (-0400) Subject: LP1890351 Vandelay queue type selector retains data X-Git-Url: https://git.evergreen-ils.org/?p=Evergreen.git;a=commitdiff_plain;h=68ee2d1af04532f2d5304a2ebdb9ef80ac592fb8 LP1890351 Vandelay queue type selector retains data Avoid clearing the queue list grid when a click on the Queue Type selector results in selecting the same queue type as the type already loaded. Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queue-list.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queue-list.component.ts index b090b7ce34..65db6d60be 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queue-list.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queue-list.component.ts @@ -79,6 +79,7 @@ export class QueueListComponent { } queueTypeChanged($event) { + if ($event.id === this.queueType) { return; } this.queueType = $event.id; this.queueSource.reset(); }