Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHinesh Patel
11,302 Points<%= todo_list.todo_items.size %> producing undefined method `name' for nil:NilClass
Here is my code snippet:
<% @todo_lists.each do |todo_list| %> <li id="<%= dom_id(todo_list) %>" class="clearfix"> <%= link_to todo_list_todo_items_path(todo_list), class: "row" do %> <div class="small-10 medium-11 columns truncate" title="<%= todo_list.title %>"><%= todo_list.title %></div> <div class="small-2 medium-1 columns"> <span class="label round"> <%= todo_list.todo_items.size %> </span> </div> <% end %> </li> <% end %>
2 Answers
David Chapman
22,023 PointsHinesh Patel , I had the same problem and was able to fix it by changing todo_list.todo_items.size to todo_list.todo_items.count.
However, I still have many test suite errors. I'll post a solution once I have it.
David Chapman
22,023 PointsHinesh Patel, To confirm, my solution above resolved itβall other failures were resolved further on in the course.
Hope that helped!