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)
committerMike Rylander <mrylander@gmail.com>
Wed, 8 Jul 2015 18:12:03 +0000 (14:12 -0400)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
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;