You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto_complete_result() does at the end content_tag("ul", items.uniq) and items is just a array. That way I get <ul>["<li>foo</li>","<li>bar</li>"]</ul> where it should be <ul><li>foo</li><li>bar</li></ul>.
I added content_tag("ul", items.uniq.join("") but wonder why this never came upp. I am using Rails 2.3.5.
The text was updated successfully, but these errors were encountered:
auto_complete_result() does at the end content_tag("ul", items.uniq) and items is just a array. That way I get <ul>["<li>foo</li>","<li>bar</li>"]</ul> where it should be <ul><li>foo</li><li>bar</li></ul>.
I added content_tag("ul", items.uniq.join("") but wonder why this never came upp. I am using Rails 2.3.5.
The text was updated successfully, but these errors were encountered: