Skip to content

Commit

Permalink
revert: do not show % in like filter value field
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jan 29, 2024
1 parent fb64909 commit c3125cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/Filter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ function convertFilters(data, allFilters) {
value = ['equals', value[1] ? 'Yes' : 'No']
}
}
if (value[0] === 'LIKE' || value[0] === 'NOT LIKE') {
value[1] = value[1].replace(/%/g, '')
}
// if (value[0] === 'LIKE' || value[0] === 'NOT LIKE') {
// value[1] = value[1].replace(/%/g, '')
// }
if (field) {
f.push({
Expand Down

0 comments on commit c3125cd

Please sign in to comment.