From fe30a5ea50a78b17e46bbab632e4fd11ca9abf85 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 1 Dec 2017 14:20:57 -0500 Subject: [PATCH] LP#1735807 Webstaff holdings owning lib shortname Display org unit shortnames in the web staff bib record Holdings View -> Owning Library column, since displaying the full names requires significant horizontal space. Signed-off-by: Bill Erickson Signed-off-by: Chris Sharp Signed-off-by: Jason Etheridge --- Open-ILS/web/js/ui/default/staff/cat/services/holdings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js index 1d97a49ddd..f0e0185c78 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js +++ b/Open-ILS/web/js/ui/default/staff/cat/services/holdings.js @@ -253,7 +253,7 @@ function(egCore , $q) { var owner_name_list = []; while (owner.parent_ou()) { // we're going to skip the top of the tree... - owner_name_list.unshift(owner.name()); + owner_name_list.unshift(owner.shortname()); owner = egCore.org.get(owner.parent_ou()); } -- 2.43.2