From 0cc9c214aa939d9995f78097c28e72b77fdb07eb Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 8 Jul 2017 13:39:07 -0700 Subject: [PATCH] Added tooltip for undeployable items --- resources/views/partials/bootstrap-table.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 5e660ab4fd..fe046bab17 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -204,7 +204,7 @@ $('.snipe-table').bootstrapTable({ // The user is allowed to check items out, but the item is not deployable } else if (((row.user_can_checkout == false)) && (row.available_actions.checkout == true) && (!row.assigned_to)) { - return '{{ trans('general.checkout') }}'; + return '
{{ trans('general.checkout') }}
'; // The user is allowed to check items in } else if ((row.available_actions.checkin == true) && (row.assigned_to)) {