We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had a quick issue with Rails 2.3.8 trying to get your plugin working (which is awesome by the way).
Rails was spitting out an error, "can't convert Array into String" and referenced:
simple_time_select/lib/simple_time_select.rb:52:in `select_minute'
To resolve this I changed:
build_select(:minute, minute_options) to build_select(:minute, minute_options.join(' '))
Hope this helps someone who wants to use this awesome plugin!
The text was updated successfully, but these errors were encountered:
Yep that helped me!
Hit the same problem with Rails 3 and ruby 1.8.7. Thanks!
Sorry, something went wrong.
So did I. Thanks a lot. It happem with rails 2.3.11 and Ruby 1.8.7
This also fixed the issue for me on rails 3.0.6 and ruby 1.8.7.
This was fixed in 6a6a549 (and my two other commits before it)
No branches or pull requests
Had a quick issue with Rails 2.3.8 trying to get your plugin working (which is awesome by the way).
Rails was spitting out an error, "can't convert Array into String" and referenced:
simple_time_select/lib/simple_time_select.rb:52:in `select_minute'
To resolve this I changed:
build_select(:minute, minute_options) to build_select(:minute, minute_options.join(' '))
Hope this helps someone who wants to use this awesome plugin!
The text was updated successfully, but these errors were encountered: