From 1ce95b6eac52a394b996def1a3177116d4688c44 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 26 Oct 2023 14:34:27 +0100 Subject: [PATCH] Removed debugging Signed-off-by: snipe --- resources/views/partials/bootstrap-table.blade.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index a7c2084ad..0122096f8 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -531,21 +531,16 @@ function changeLogFormatter(value) { - console.dir(value); var result = ''; var pretty_index = ''; - console.error('first the formatter'); - for (var index in value) { // Check if it's a custom field if (index.startsWith('_snipeit_')) { - console.error('It is a custom field'); pretty_index = index.replace("_snipeit_", "Custom:_"); } else { - console.error('Not a custom field'); pretty_index = index; }