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 9f5ce21 commit 905265eCopy full SHA for 905265e
Index/MappingBuilder.php
@@ -107,6 +107,9 @@ private function fixProperties(&$properties)
107
if (!isset($property['type'])) {
108
$property['type'] = 'string';
109
}
110
+ if ($property['type'] == 'multi_field' && isset($property['fields'])) {
111
+ $this->fixProperties($property['fields']);
112
+ }
113
if (isset($property['properties'])) {
114
$this->fixProperties($property['properties']);
115
0 commit comments