From a9353dc88da962951e0ae9d799f214b95b539399 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 3 Oct 2022 11:38:13 +0000 Subject: [PATCH] Bug 22115: (QA follow-up) prevent wrap on price columns Signed-off-by: Nick Clemens --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 8af8dff9f8..5cda87e84a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -438,19 +438,22 @@ $(document).ready(function() { "mDataProp": function ( oObj ) { if ( ! oObj.charge ) oObj.charge = 0; return '' + parseFloat(oObj.charge).format_price() + ''; - } + }, + "sClass": "nowrap" }, { "mDataProp": function ( oObj ) { if ( ! oObj.fine ) oObj.fine = 0; return '' + parseFloat(oObj.fine).format_price() + ''; - } + }, + "sClass": "nowrap" }, { "mDataProp": function ( oObj ) { if ( ! oObj.price ) oObj.price = 0; return '' + parseFloat(oObj.price).format_price() + ''; - } + }, + "sClass": "nowrap" }, { "bSortable": false, -- 2.30.2