Skip to content

Commit

Permalink
Merge pull request #43 from hanskenis/master
Browse files Browse the repository at this point in the history
append the lists instead of string concatenation
  • Loading branch information
danielberkompas authored Feb 3, 2017
2 parents cacf924 + fcb3ed5 commit fb7219e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/torch/views/filter_view.ex
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ defmodule Torch.FilterView do
{:safe, ending} =
date_input("#{prefix}[#{field}_between][end]",
get_in(params, [prefix, "#{field}_between", "end"]), "end")
raw(start <> ending)
raw(start ++ ending)
end

@doc """
Expand Down

0 comments on commit fb7219e

Please sign in to comment.