Skip to content

Commit

Permalink
#1637 Add support to integer and float filter values
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani authored and To-om committed Nov 13, 2020
1 parent 601f138 commit ba6afb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/app/scripts/services/common/ui/FilteringSrv.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,13 @@
case 'boolean':
filter.value = value;
break;
case 'integer':
case 'float':
filter.value = {
operator: '=',
value: value
};
break;
case 'user':
break;
}
Expand Down

0 comments on commit ba6afb3

Please # to comment.