Commit c13e3003 authored by Nicolas Wavrant's avatar Nicolas Wavrant

erp5_web_renderjs_ui: show numeric comparaisons for float_index

parent 6091dd23
Pipeline #12398 failed with stage
in 0 seconds
......@@ -29,7 +29,8 @@
function isNumericComparison(value) {
return value.indexOf('date') !== -1 ||
value.indexOf('quantity') !== -1 ||
value.indexOf('price') !== -1;
value.indexOf('price') !== -1 ||
value.indexOf('float_index') !== -1;
}
function getComparisonOptionList(value) {
if (value.indexOf(PREFIX_COLUMN) === 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment