forgive space in query
This commit is contained in:
parent
0b99f6c847
commit
1b1626baaa
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ module DossierFilteringConcern
|
|||
}
|
||||
|
||||
scope :filter_ilike, lambda { |table, column, search_terms|
|
||||
safe_quoted_terms = search_terms.map { "%#{sanitize_sql_like(_1)}%" }
|
||||
safe_quoted_terms = search_terms.map(&:strip).map { "%#{sanitize_sql_like(_1)}%" }
|
||||
table_column = DossierFilterService.sanitized_column(table, column)
|
||||
|
||||
where("#{table_column} LIKE ANY (ARRAY[?])", safe_quoted_terms)
|
||||
|
|
Loading…
Reference in a new issue