Browse Source

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 <black23@gmail.com>

Signed-off-by: Michal Denar <black23@gmail.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Hayley Mapley 5 years ago
committed by Nick Clemens
parent
commit
08f02c1aa5
  1. 3
      koha-tmpl/intranet-tmpl/prog/js/holds.js

3
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 += "<p>" + HOLD_IS_SUSPENDED;

Loading…
Cancel
Save