From 7f674fdd35616d279cd31e56da77c5821f83c851 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 11 Jan 2018 13:18:06 -0800 Subject: [PATCH] Require implicit search --- 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 5fff0b538..b4d218498 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -46,7 +46,7 @@ }, undefinedText: '', iconsPrefix: 'fa', - search: {{ (isset($search)) ? 'true' : 'false' }}, + search: {{ ((isset($search)) && ($search=='true')) ? 'true' : 'false' }}, paginationVAlign: 'both', sidePagination: '{{ (isset($clientSearch)) ? 'client' : 'server' }}', sortable: true,