We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1575e08 + f3c9e49 commit a497567Copy full SHA for a497567
src/Utilities/Request.php
@@ -170,7 +170,7 @@ public function isColumnSearchable($i, $column_search = true)
170
*/
171
public function columnKeyword($index)
172
{
173
- $keyword = $this->request->input("columns.$index.search.value");
+ $keyword = $this->request->input("columns.$index.search.value") ?? '';
174
175
return $this->prepareKeyword($keyword);
176
}
@@ -197,7 +197,7 @@ protected function prepareKeyword($keyword)
197
198
public function keyword()
199
200
- $keyword = $this->request->input('search.value');
+ $keyword = $this->request->input('search.value') ?? '';
201
202
203
0 commit comments