Reputation: 1901
<%= yield(:title_box) if content_for?(:title_box) %>
Or is the if condition useless here?
Upvotes: 0
Views: 58
Reputation: 2380
The condition check is not needed as if nothing to render there is nothing will be outputted. See docs
Upvotes: 2