From 89f863b742e8f92c8d5c07df6e541e7576243ae3 Mon Sep 17 00:00:00 2001 From: Yamil Suarez Date: Wed, 17 Dec 2014 14:35:41 -0500 Subject: [PATCH] Display 'subject heading thesaurus' value in Manage Authorities results The 'subject heading thesaurus' basically defines the issuing authority that created the authority record. For example, a value of "a" means that it came from LoC. A value of "n" means that it is a locally created authority. Note that within the authority MARC editor the 'Subject Heading Thesaurus' is stored/displayed in the 'Subj' fixed field. Signed-off-by: Yamil Suarez --- Open-ILS/web/js/ui/default/cat/authority/list.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/cat/authority/list.js b/Open-ILS/web/js/ui/default/cat/authority/list.js index 4c42b90b4d..b6ef51896d 100644 --- a/Open-ILS/web/js/ui/default/cat/authority/list.js +++ b/Open-ILS/web/js/ui/default/cat/authority/list.js @@ -103,7 +103,9 @@ function displayAuthorities(data) { '
Control Set: ' + fetch_control_set(auth.thesaurus).name() + ' (#' + - fetch_control_set(auth.thesaurus).id() + ')
', + fetch_control_set(auth.thesaurus).id() + ')' + + '' + 'Thes: ' + auth.thesaurus + '' + + '', "authlist-div", "last" ); -- 2.11.0