webstaff: indicator value lists now use "description" to, well, label descriptions
authorGalen Charlton <gmc@esilibrary.com>
Mon, 16 Mar 2015 21:04:18 +0000 (21:04 +0000)
committerJason Stephenson <jstephenson@mvlc.org>
Wed, 19 Aug 2015 17:39:13 +0000 (13:39 -0400)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Open-ILS/web/js/ui/default/staff/cat/services/tagtable.js

index 22a715c..d696173 100644 (file)
@@ -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;