Skip to content

Commit ee61e88

Browse files
Merge pull request #2439 from bhavesh-018/fix/quotes-search-functionality
fix: enable global search for quotes
2 parents 3237984 + 3e89681 commit ee61e88

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/Webkul/Admin/src/DataGrids/Quote/QuoteDataGrid.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function prepareColumns(): void
6767
'label' => trans('admin::app.quotes.index.datagrid.subject'),
6868
'type' => 'string',
6969
'filterable' => true,
70+
'searchable' => true,
7071
'sortable' => true,
7172
]);
7273

@@ -75,6 +76,7 @@ public function prepareColumns(): void
7576
'label' => trans('admin::app.quotes.index.datagrid.sales-person'),
7677
'type' => 'string',
7778
'sortable' => true,
79+
'searchable' => true,
7880
'filterable' => true,
7981
'filterable_type' => 'searchable_dropdown',
8082
'filterable_options' => [
@@ -91,6 +93,7 @@ public function prepareColumns(): void
9193
'label' => trans('admin::app.quotes.index.datagrid.person'),
9294
'type' => 'string',
9395
'sortable' => true,
96+
'searchable' => true,
9497
'filterable' => true,
9598
'filterable_type' => 'searchable_dropdown',
9699
'filterable_options' => [

0 commit comments

Comments
 (0)