From 5c68353e624e879a875557d01b9d65eb5f8b761a Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 28 Mar 2020 01:36:35 -0700 Subject: [PATCH] Use non-min bs tables for now --- resources/views/partials/bootstrap-table.blade.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 0c70e2c3cb..9f0c52fcd6 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -1,4 +1,4 @@ - + @@ -190,11 +190,11 @@ } if ((row.available_actions) && (row.available_actions.clone === true)) { - actions += ' '; + actions += 'Clone '; } if ((row.available_actions) && (row.available_actions.update === true)) { - actions += ' '; + actions += 'Update '; } if ((row.available_actions) && (row.available_actions.delete === true)) { @@ -203,7 +203,7 @@ + ' data-toggle="modal" ' + ' data-content="{{ trans('general.sure_to_delete') }} ' + row.name + '?" ' + ' data-title="{{ trans('general.delete') }}" onClick="return false;">' - + ' '; + + 'Delete '; } else { actions += ' '; }