From 253fb585af95071514c0d98e3b9222d078349e14 Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Mon, 11 Jun 2012 11:18:08 -0400 Subject: [PATCH] Show Vandelay Buckets in Manage Record Buckets The 'Manage Record Buckets' view is currently filtered to show only 'staff_client' type buckets. This expands the filter to include 'vandelay_queue' buckets. Signed-off-by: Dan Wells Signed-off-by: Bill Erickson --- Open-ILS/xul/staff_client/server/cat/record_buckets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js index e4a00385c3..6d11ca1fba 100644 --- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js +++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js @@ -296,7 +296,7 @@ cat.record_buckets.prototype = { util.functional.filter_list( buckets.biblio, function(o) { - return o.btype() == 'staff_client'; + return (o.btype() == 'staff_client' || o.btype() == 'vandelay_queue'); } ), function(o) { -- 2.43.2