meta_workflows 0.8.16 → 0.8.17

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: 96552fbab72118354ae3e4ff4e960751cf3f6c4157b783c618b08c90bdfaf3d8
4
- data.tar.gz: 2deea6a1b1899874c50b8bb9148eb7358d41d63dad996b4659bf5b62c1dd41e3
3
+ metadata.gz: ad09f1d339b0efee72ca8bcd71d89e60d9dbd431eae240d0a2763fd688e4ad81
4
+ data.tar.gz: 1cfb07dea381b3730a7a185c50ac4238eef821d656f969e4ca287ead0c507e6e
5
5
  SHA512:
6
- metadata.gz: 67b87b7d61be328304623c3fb34d4b1282e8fbe3f3ee872b3cd6f596a34a4bc56e2396358ca839aad76ab2692f148659467b24e215b4f406eee38242698c5e5b
7
- data.tar.gz: acfc10a24ad5c4e01871614a82bf10cf15df07ce96c6312b1ff17c79f15d1369c3a90f41eeaf8256af386f6b2ad89994ae4f81deb5d5117b1f7261298aa66945
6
+ metadata.gz: 8f651f54303a4c5724157d1cf37b0ae4ea5c36525fac453faf1aa260b5977530522c509e26c700b8ded23cded243cd4bcd1cbd2ed1d39fb3dd31da8794b1f6b1
7
+ data.tar.gz: 6b473d2dcef5fa839e48b7a908a8bfb25fffd7a896ca6f3a86a765e79b08ac0156e581c2af8b73b64f025dd138cf5fde3b621f4c56ff9b68ab8d9234738aef6a
@@ -15,15 +15,15 @@
15
15
  <%= form.text_field :search,
16
16
  placeholder: "Search executions...",
17
17
  value: params[:search],
18
- class: "block w-48 rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" %>
18
+ class: "block w-48 px-3 py-2 text-sm rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500" %>
19
19
  <%= form.hidden_field :workflow_id, value: params[:workflow_id] %>
20
20
  <%= form.submit "Search",
21
- class: "inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" %>
21
+ class: "inline-flex items-center px-4 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" %>
22
22
  <% end %>
23
23
 
24
24
  <% if params.slice(:workflow_id, :status, :date_from, :date_to).values.any?(&:present?) %>
25
25
  <%= link_to "Clear Filters", executions_path,
26
- class: "inline-flex items-center px-3 py-2 border border-gray-300 text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" %>
26
+ class: "inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500" %>
27
27
  <% end %>
28
28
  </div>
29
29
  </div>
@@ -34,7 +34,7 @@
34
34
  <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
35
35
  <!-- Status Filter -->
36
36
  <div>
37
- <%= form.label :status, "Status", class: "block text-sm font-medium text-gray-700" %>
37
+ <%= form.label :status, "Status", class: "block text-sm font-medium text-gray-700 mb-1" %>
38
38
  <%= form.select :status,
39
39
  options_for_select([
40
40
  ['All Statuses', ''],
@@ -43,23 +43,23 @@
43
43
  ['Failed', 'failed']
44
44
  ], params[:status]),
45
45
  { prompt: false },
46
- { class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" } %>
46
+ { class: "block w-full px-3 py-2 text-sm rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500" } %>
47
47
  </div>
48
48
 
49
49
  <!-- Date From -->
50
50
  <div>
51
- <%= form.label :date_from, "From Date", class: "block text-sm font-medium text-gray-700" %>
51
+ <%= form.label :date_from, "From Date", class: "block text-sm font-medium text-gray-700 mb-1" %>
52
52
  <%= form.date_field :date_from,
53
53
  value: params[:date_from],
54
- class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" %>
54
+ class: "block w-full px-3 py-2 text-sm rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500" %>
55
55
  </div>
56
56
 
57
57
  <!-- Date To -->
58
58
  <div>
59
- <%= form.label :date_to, "To Date", class: "block text-sm font-medium text-gray-700" %>
59
+ <%= form.label :date_to, "To Date", class: "block text-sm font-medium text-gray-700 mb-1" %>
60
60
  <%= form.date_field :date_to,
61
61
  value: params[:date_to],
62
- class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" %>
62
+ class: "block w-full px-3 py-2 text-sm rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500" %>
63
63
  </div>
64
64
 
65
65
  <!-- Apply Filters Button -->
@@ -3,7 +3,7 @@
3
3
  module MetaWorkflows
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 16 # this is automatically incremented by the build process
6
+ PATCH = 17 # this is automatically incremented by the build process
7
7
 
8
8
  VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta_workflows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.16
4
+ version: 0.8.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonid Medovyy