LP#1731370: (follow-up) fix a typo that was causing console noise
authorGalen Charlton <gmc@equinoxinitiative.org>
Mon, 3 Aug 2020 21:38:48 +0000 (17:38 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Mon, 3 Aug 2020 21:39:18 +0000 (17:39 -0400)
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js

index 72c85ff..23a97a5 100644 (file)
@@ -600,7 +600,7 @@ function(egCore , $q) {
         transclude: true,
         template:
             '<div class="row" ng-class="{'+"'new-cn'"+':!callNumber.not_ephemeral}">'+
-                '<span ng-if="!callNumber.not_ephemeral()" class="sr-only">' + egCore.strings.VOL_COPY_NEW_CALL_NUMBER + '</span>' +
+                '<span ng-if="!callNumber.not_ephemeral" class="sr-only">' + egCore.strings.VOL_COPY_NEW_CALL_NUMBER + '</span>' +
                 '<div class="col-xs-2">'+
                     '<button aria-label="Delete" style="margin:-5px -15px; float:left;" ng-hide="callNumber.not_ephemeral" type="button" class="close" ng-click="removeCN()">&times;</button>' +
                     '<select class="form-control" ng-model="classification" ng-change="updateClassification()" ng-options="cl.name() for cl in classification_list"></select>'+