fix(multiple_drop_down_list): iterate over selected options not to_s
This commit is contained in:
parent
35c556fc89
commit
19bac6339c
1 changed files with 3 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
|||
- if champ.to_s.present?
|
||||
- if !champ.blank?
|
||||
%ul
|
||||
- champ.to_s.split(", ").each do |item|
|
||||
%li
|
||||
= item
|
||||
- champ.selected_options.each do |item|
|
||||
%li= item
|
||||
|
|
Loading…
Reference in a new issue