lato_storage 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/lato_storage/application/index.html.erb +2 -2
- data/lib/lato_storage/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f60e0848acdfd5b0de5f20980534819168517e704d057f733b7545de563ddf8
|
|
4
|
+
data.tar.gz: 58d3cd2919869438494d2eb985cfde1639a3495870cdbf64caee275cadf60f19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4213b787cc1f1d84ebceeeef5f9cb5f8ed540ad67bba1883fd5cbd7c657d024bc5004f29ffb72a7f04666eed126d574d8f738f7caf1169cb5e3fb32773cbd942
|
|
7
|
+
data.tar.gz: 011650c33d774e48efcb857c4947dbbefd99ef52bdecf4bb4874fa108777ff99f794542ef5528696e9e55255c14c9fe5bd275df6db26292120019a808dbf8c65
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
</h5>
|
|
60
60
|
</div>
|
|
61
61
|
<div class="card-body">
|
|
62
|
-
<% if @data[:content_types]
|
|
62
|
+
<% if @data[:content_types]&.any? %>
|
|
63
63
|
<% total = @data[:content_types].sum { |_, count| count } %>
|
|
64
64
|
<ul class="list-group list-group-flush">
|
|
65
65
|
<% @data[:content_types].each do |content_type, count| %>
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
</h5>
|
|
123
123
|
</div>
|
|
124
124
|
<div class="card-body">
|
|
125
|
-
<% if @data[:largest_blobs]
|
|
125
|
+
<% if @data[:largest_blobs]&.any? %>
|
|
126
126
|
<div class="list-group list-group-flush">
|
|
127
127
|
<% @data[:largest_blobs].each do |blob| %>
|
|
128
128
|
<a class="list-group-item list-group-item-action" href="<%= blob[:url] %>" target="_blank" rel="noopener noreferrer" download>
|
data/lib/lato_storage/version.rb
CHANGED