Files
nairobi/app/components/widget/feeds/participation_component.html.erb
Javi Martín e8e920ee50 Rename Widgets components to Widget
So naming is consistent with the way Admin::Widget controllers are
named.
2021-01-12 14:50:37 +01:00

8 lines
242 B
Plaintext

<div class="row margin-bottom feeds-list feeds-participation">
<% feeds.each do |feed| %>
<% if feed_proposals?(feed) || feed_debates?(feed) %>
<%= render Widget::Feeds::FeedComponent.new(feed) %>
<% end %>
<% end %>
</div>