From: Galen Charlton Date: Mon, 16 Mar 2015 21:04:18 +0000 (+0000) Subject: indicator value lists now use "description" to, well, label descriptions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3954ab7837216a8baf68788250a7008525997d19;p=working%2FEvergreen.git indicator value lists now use "description" to, well, label descriptions Signed-off-by: Galen Charlton --- 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;