From 28ec0b8ebb6f9f5a85e640aa3c98e55f5c8fa100 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 8 Mar 2024 17:19:31 +0000 Subject: [PATCH] Removed debugging console lines Signed-off-by: snipe --- resources/views/partials/bootstrap-table.blade.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index e69e525e2b..430f9566c2 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -411,13 +411,11 @@ // add some stuff to get the value of the select2 option here? if ((row.available_actions) && (row.available_actions.bulk_selectable) && (row.available_actions.bulk_selectable.delete !== true)) { - console.log('value for ID ' + row.id + ' is NOT true:' + row.available_actions.bulk_selectable.delete); return { disabled:true, //checked: false, <-- not sure this will work the way we want? } } - console.log('value for ID ' + row.id + ' IS true:' + row.available_actions.bulk_selectable.delete); }