From 5ab274e717b33ae6e4f7221d3cc86c4e3fb9a951 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 8 Jan 2022 19:48:44 -0500 Subject: [PATCH] Fix syntax error in previous fix --- Open-ILS/web/js/ui/default/staff/cat/item/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js index 3426fc65b0..774b4620bf 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js @@ -564,7 +564,7 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD if (res[0]) { $scope.success_count = res[0]; ngToast.create({ - content: $sce.trustAsHtml(egCore.strings.SUCCESS_UPDATE_INVENTORY) + content: $sce.trustAsHtml(egCore.strings.SUCCESS_UPDATE_INVENTORY), compileContent: true}); } else { ngToast.warning(egCore.strings.FAIL_UPDATE_INVENTORY); -- 2.11.0