Skip to content
Snippets Groups Projects
Verified Commit 24221950 authored by Damien's avatar Damien
Browse files

FEAT #15350 TIME 0:35 FIX indexing models

parent 1d9ed4a9
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ class IndexingModelController
}
$master = $body['master'];
$fieldsMaster = IndexingModelFieldModel::get(['select' => ['identifier', 'mandatory', 'default_value', 'unit', 'enabled'], 'where' => ['model_id = ?'], 'data' => [$body['master']]]);
$fieldsMaster = IndexingModelFieldModel::get(['select' => ['identifier', 'mandatory', 'default_value', 'unit'], 'where' => ['model_id = ?'], 'data' => [$body['master']]]);
foreach ($fieldsMaster as $key => $value) {
$fieldsMaster[$key]['default_value'] = json_decode($value['default_value'], true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment