mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Fix rendering of notifications
This commit is contained in:
parent
fe5142753c
commit
f121e74d33
1 changed files with 9 additions and 9 deletions
|
@ -15,15 +15,15 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="h-box">
|
||||
<center><%= notifications.size %> unseen notifications</center>
|
||||
<% notifications.each_slice(4) do |slice| %>
|
||||
<% slice.each do |video| %>
|
||||
<%= rendered "components/video" %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<hr>
|
||||
</div>
|
||||
<center><%= notifications.size %> unseen notifications</center>
|
||||
<% notifications.each_slice(4) do |slice| %>
|
||||
<div class="pure-g">
|
||||
<% slice.each do |video| %>
|
||||
<%= rendered "components/video" %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
<hr>
|
||||
|
||||
<% videos.each_slice(4) do |slice| %>
|
||||
<div class="pure-g">
|
||||
|
|
Loading…
Reference in a new issue