Commit 0ee2668a4fd5604f4e308e60656ec3849b16288d
1 parent
c058aaf7
Exists in
master
and in
4 other branches
Fixed users_select_tag method
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/application_helper.rb
... | ... | @@ -194,7 +194,7 @@ module ApplicationHelper |
194 | 194 | def users_select_tag(id, opts = {}) |
195 | 195 | css_class = "ajax-users-select " |
196 | 196 | css_class << "multiselect " if opts[:multiple] |
197 | - css_class << opts[:class] || '' | |
197 | + css_class << (opts[:class] || '') | |
198 | 198 | value = opts[:selected] || '' |
199 | 199 | |
200 | 200 | hidden_field_tag(id, value, class: css_class) | ... | ... |