completion-kit 0.20.1 → 0.20.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: add9016cd40a2ea521e553b3e276594dfa227ace10a95f8afb8f50ce3788100a
|
|
4
|
+
data.tar.gz: 4aeca7c8b6755eef7eee8f44ed868dec922171462c75d8d668fac78025187e12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4744fa57a9f7ea2a6ad5d42856a60bfb704ae796be1527bb252e2ecd8c05f311cd32c516ae980b418a18c37c642a5fb788250f508d52ab8002b0ac8267c51eab
|
|
7
|
+
data.tar.gz: a55fa781ba2ac6a699f606bc0bda2aaec44b8dc51c970fe3db3074dfbcd0b0cc102b2b77fbd95326558746a2a05223c00a5477be381fd0a5c4917f46156a81e0
|
|
@@ -88,6 +88,8 @@
|
|
|
88
88
|
|
|
89
89
|
<% if @recent_runs.any? %>
|
|
90
90
|
<%= render "completion_kit/runs/table", runs: @recent_runs %>
|
|
91
|
+
<% elsif CompletionKit::Run.exists? %>
|
|
92
|
+
<div class="ck-empty">Your older runs are hidden.</div>
|
|
91
93
|
<% else %>
|
|
92
94
|
<div class="ck-empty">No runs yet. <%= link_to "Create your first run →", new_run_path, class: "ck-link" %></div>
|
|
93
95
|
<% end %>
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
<div class="ck-empty">
|
|
20
20
|
<p>No runs match these tags. <%= link_to "Clear filters", runs_path, class: "ck-link" %>.</p>
|
|
21
21
|
</div>
|
|
22
|
+
<% elsif CompletionKit::Run.exists? %>
|
|
23
|
+
<div class="ck-empty">Your older runs are hidden.</div>
|
|
22
24
|
<% else %>
|
|
23
25
|
<div class="ck-empty">No runs yet. <%= link_to "Create your first run →", new_run_path, class: "ck-link" %></div>
|
|
24
26
|
<% end %>
|