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