* Make thumbnails on the "My Uploads" page show an icon with an image count when an upload contains multiple files. * Make the "My Uploads" page show each upload, not each individual file. If an upload contains multiple files, they're shown grouped together under a single upload. This does mean that failed or duplicate uploads will show up on this page now. This is because this page shows each upload attempt, not each uniquely uploaded file.
10 lines
329 B
Plaintext
10 lines
329 B
Plaintext
<%= render(MediaAssetGalleryComponent.new) do |gallery| %>
|
|
<% @media_assets.each do |media_asset| %>
|
|
<% if policy(media_asset).can_see_image? %>
|
|
<% gallery.media_asset do %>
|
|
<%= render "media_assets/preview", media_asset: media_asset, size: gallery.size %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|