Skip to content

Possible Bug #458

@neboduus

Description

@neboduus

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions