fix: [singleView:jsonField] Render only first value
parent
39f44471e4
commit
7add89aa9e
|
@ -4,7 +4,7 @@
|
||||||
$string = $field['raw'];
|
$string = $field['raw'];
|
||||||
} else {
|
} else {
|
||||||
$value = Cake\Utility\Hash::extract($data, $field['path']);
|
$value = Cake\Utility\Hash::extract($data, $field['path']);
|
||||||
$string = count($value) == 0 ? '' : $value;
|
$string = count($value) == 0 ? '' : $value[0];
|
||||||
}
|
}
|
||||||
echo sprintf(
|
echo sprintf(
|
||||||
'<div class="json_container_%s"></div>',
|
'<div class="json_container_%s"></div>',
|
||||||
|
|
Loading…
Reference in New Issue