-
Notifications
You must be signed in to change notification settings - Fork 234
Open
Description
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
endSo 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:NilClassIf I use if instead of case it works.
Am I missing something or there is a bug?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels