Commit c13e3003 authored by Nicolas Wavrant's avatar Nicolas Wavrant

erp5_web_renderjs_ui: show numeric comparaisons for float_index

parent 6091dd23
...@@ -29,7 +29,8 @@ ...@@ -29,7 +29,8 @@
function isNumericComparison(value) { function isNumericComparison(value) {
return value.indexOf('date') !== -1 || return value.indexOf('date') !== -1 ||
value.indexOf('quantity') !== -1 || value.indexOf('quantity') !== -1 ||
value.indexOf('price') !== -1; value.indexOf('price') !== -1 ||
value.indexOf('float_index') !== -1;
} }
function getComparisonOptionList(value) { function getComparisonOptionList(value) {
if (value.indexOf(PREFIX_COLUMN) === 0) { 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