From 9bb4df61dc803f6328d679a64754fa695179dbaf Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 26 Jul 2017 12:51:13 -0700 Subject: [PATCH] JBAS-1728 SCKO billing type labels avoid misc When a billing type is available, use it as-is without prepending "miscallaneous - ..." Signed-off-by: Bill Erickson --- Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js index 847631be8d..af4551b2b7 100644 --- a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js +++ b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js @@ -986,8 +986,7 @@ SelfCheckManager.prototype.drawFinesPage = function() { function stringifyBtype(btype) { // avoid confusion around "grocery". TODO i18n - return btype ? - ("Miscellaneous - " + btype) : "Miscellaneous"; + return btype || "Miscellaneous"; } for(var fine = 0; fine < outstandingFines.length; fine++) { -- 2.11.0