diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 0c70e2c3c..9f0c52fcd 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 += ' '; }