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

FEAT #11269 TIME 0:15 Change float to integer

parent d8030bde
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,10 @@ foreach ($customs as $custom) {
}
$label = (string)$value->label;
$type = (string)$value->type;
$type = trim((string)$value->type);
if ($type == 'float') {
$type = 'integer';
}
$values = [];
if (!empty($value->values_list)) {
......
This diff is collapsed.
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