From c4a28f0ec4170078524e0f996b7b346b1ea6b55e Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 1 Aug 2025 22:18:02 +0100 Subject: [PATCH] Use consistent icon for adding people Signed-off-by: snipe --- 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 6a08ff4aad..b7f8d6dc44 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -1230,7 +1230,7 @@ @can('create', \App\Models\User::class) btnAdd: { text: '{{ trans('general.create') }}', - icon: 'fa-solid fa-user-plus', + icon: 'fa fa-plus', event () { window.location.href = '{{ route('users.create') }}'; },