Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible Bug #458

Open
neboduus opened this issue Oct 13, 2017 · 1 comment
Open

Possible Bug #458

neboduus opened this issue Oct 13, 2017 · 1 comment

Comments

@neboduus
Copy link

I don't know if is a bug but I have the following Cell

class SchedulesCell < Cell::ViewModel
  def show
    render
  end

  def daily
    render
  end

  def weekly
    render
  end

  def planning
    model
  end

end

So I have anothers 2 cell's partials called daily abd weekly
In my show.erb I have

<% case planning.activity.a_type %>
<% when '0' %>
    <%= daily %>
<% else %>
    <%= weekly %>
<% end %>

and in daily.erb and weekly.erb I have pure text.

Very simple isn't it? But it doesn't work. It gaves me

undefined method `[]' for nil:NilClass

If I use if instead of case it works.
Am I missing something or there is a bug?

@jarosluv
Copy link
Contributor

Try to use case statement like described here:

<% case planning.activity.a_type
   when '0' %>
     <%= daily %>
<% else %>
     <%= weekly %>
<% end %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants