diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index fc7aca555..209ec3bd5 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -179,16 +179,21 @@ $('.snipe-table').bootstrapTable({ var actions = ''; + var dest = destination; + if (destination=='groups') { + var dest = 'admin/groups'; + } + if ((row.available_actions) && (row.available_actions.clone === true)) { - actions += ' '; + actions += ' '; } if ((row.available_actions) && (row.available_actions.update === true)) { - actions += ' '; + actions += ' '; } if ((row.available_actions) && (row.available_actions.delete === true)) { - actions += ' '; + actions += ' '; } return actions;