Skip to content

Commit

Permalink
Fix column type citext HTML5 input type bug
Browse files Browse the repository at this point in the history
  • Loading branch information
brucew authored Jun 7, 2018
1 parent dbd2e19 commit c23dbb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/simple_form/inputs/string_input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def input(wrapper_options = nil)
private

def string?
input_type == :string
input_type == :string || input_type == :citext
end
end
end
Expand Down

0 comments on commit c23dbb1

Please sign in to comment.