We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb7f7ff + 047fcee commit 7d4e196Copy full SHA for 7d4e196
templates/ruby/lib/container/query.rb.twig
@@ -28,9 +28,9 @@ module {{spec.title | caseUcfirst}}
28
29
def addQuery(attribute, oper, value)
30
if value.is_a?(Array)
31
- "#{attribute}.#{oper}.(#{value.map {|item| parseValues(item)}.join(',')})"
+ "#{attribute}.#{oper}(#{value.map {|item| parseValues(item)}.join(',')})"
32
else
33
- return "#{attribute}.#{oper}.(#{parseValues(value)})"
+ return "#{attribute}.#{oper}(#{parseValues(value)})"
34
end
35
36
0 commit comments