@gridsuite/commons-ui 0.136.0 → 0.136.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -188,7 +188,10 @@ function importExpertRules(query) {
|
|
|
188
188
|
}
|
|
189
189
|
return rule.values.sort();
|
|
190
190
|
}
|
|
191
|
-
|
|
191
|
+
if (rule.dataType === DataType.NUMBER) {
|
|
192
|
+
return convertInputValue(rule.field, rule.value);
|
|
193
|
+
}
|
|
194
|
+
return rule.value;
|
|
192
195
|
}
|
|
193
196
|
function transformRule(rule) {
|
|
194
197
|
return {
|