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 1560abc commit 76dc5caCopy full SHA for 76dc5ca
Service/Page/IndexBuilder.php
@@ -38,7 +38,7 @@ public function __construct(
38
*/
39
public function buildIndexFull(int $storeId, array $options = null): void
40
{
41
- $this->buildIndex($storeId, isset($options['ids'])?: null, null);
+ $this->buildIndex($storeId, $options['ids'] ?? null, null);
42
}
43
44
/**
Ui/Component/Listing/Column/Data.php
@@ -30,6 +30,7 @@ public function prepareDataSource(array $dataSource)
30
$stringValue = '';
31
foreach ($value as $k => $v) {
32
if (is_string($k)) {
33
+ $v = !is_array($v) ?: implode(",", $v);
34
$stringValue .= '<br> - <strong>' . $k . '</strong> : '. $v;
35
} else {
36
$stringValue .= $v . ',';
0 commit comments