diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 38ffde10a0..5a6e9dd464 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -327,6 +327,11 @@ item_icon = ''; } + // display the username if it's checked out to a user + if (value.username) { + value.name = value.name + ' (' + value.username + ')'; + } + return ' ' + value.name + ''; } else {