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.
1 parent a0f21d8 commit 8b7e273Copy full SHA for 8b7e273
packages/Webkul/DataGrid/src/Exports/DataGridExport.php
@@ -63,7 +63,7 @@ protected function extractValuesFromJson(string $json): string
63
{
64
$decoded = json_decode($json, true);
65
66
- if (json_last_error() === JSON_ERROR_NONE
+ if (json_last_error() === JSON_ERROR_NONE
67
&& is_array($decoded)) {
68
return collect($decoded)->pluck('value')->implode(', ');
69
}
0 commit comments