From 131e501d67be87784770b25a3fd008ae6c25f1b2 Mon Sep 17 00:00:00 2001 From: Hayley Mapley Date: Mon, 8 Apr 2019 10:25:11 +1200 Subject: [PATCH] Bug 19630: Removed constant message from Status column Test plan: Same as initial test plan, except that when a hold has no status that the Status column for that hold should be blank instead of saying "Hold has been placed". Sponsored-by: Catalyst IT Signed-off-by: Michal Denar Signed-off-by: Michal Denar --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index 48d13fbce9..1ca9a627c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -132,9 +132,6 @@ $(document).ready(function() { { "mDataProp": function( oObj ) { var data = ""; - if ( oObj.suspend != 1 && !oObj.itemtype_limit) { - data = _("Hold has been placed\n"); - } if ( oObj.suspend == 1 ) { data += "

" + HOLD_IS_SUSPENDED; -- 2.11.0