3
votes
Cycling through array of objects within view in Rails: unexpected behaviour
You should be using @garden.plants.each instead of collect. Collect should be used to filter array results not to loop over them.
…
