| 221 |         const item_types_notforloan = new Map(all_item_types.map( it => [it.itemtype, it.notforloan] )); | 221 |         const item_types_notforloan = new Map(all_item_types.map( it => [it.itemtype, it.notforloan] )); | 
        
              | 223 |         const statuses = {checked_out: _("Checked out"), local_use: _("On-site checkout"), in_transit: _("In transit"), lost: _("Lost"), withdrawn: _("Withdrawn"), damaged:_("Damaged"), not_for_loan: _("Not for loan"), on_hold: _("On hold"), recalled: _("Recalled"), available: _("Available"), restricted: _("Restricted")}; | 223 |         const statuses = {checked_out: _("Checked out"), local_use: _("On-site checkout"), in_transit: _("In transit"), lost: _("Lost"), withdrawn: _("Withdrawn"), damaged:_("Damaged"), not_for_loan: _("Not for loan"), on_hold: _("On hold"), recalled: _("Recalled"), available: _("Available"), restricted: _("Restricted"), in_bundle: _("In bundle")}; | 
        
          | 224 |         const all_statuses = Object.keys(statuses).map(k => {return {_id: k, _str: statuses[k]}}); | 224 |         const all_statuses = Object.keys(statuses).map(k => {return {_id: k, _str: statuses[k]}}); |