From 68ee2d1af04532f2d5304a2ebdb9ef80ac592fb8 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 5 Aug 2020 11:41:14 -0400 Subject: [PATCH] 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 --- .../src/eg2/src/app/staff/cat/vandelay/queue-list.component.ts | 1 + 1 file changed, 1 insertion(+) 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(); } -- 2.43.2