auto_complete icon indicating copy to clipboard operation
auto_complete copied to clipboard

auto_complete_result() returns a Array.to_s

Open jeena opened this issue 16 years ago • 0 comments

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.

jeena avatar Dec 28 '09 12:12 jeena