From 3954ab7837216a8baf68788250a7008525997d19 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 16 Mar 2015 21:04:18 +0000 Subject: [PATCH] indicator value lists now use "description" to, well, label descriptions Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js b/Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js index 22a715cc7a..d696173697 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js +++ b/Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js @@ -97,7 +97,7 @@ function($q, egCore, egAuth) { angular.forEach(service.fields[tag]["ind" + pos], function(value) { this.push({ value: value.code, - label: value.code + ': ' + value.value + label: value.code + ': ' + value.description }); }, list); return list; -- 2.11.0