meta_workflows 0.8.18 → 0.8.19

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: bef4b8fc653594bf2fb53bbefc07c4f5d0e04f5a30718d9ad31179730f3a4ed5
4
- data.tar.gz: c6798c6aac52a642b7ee7e9e851a1b9ea4585b56d310f846fc7a3d1fadf143a3
3
+ metadata.gz: a9c825c0e356c14c04b766a7952fd48f3ed40f062de1becc83aec289feb98194
4
+ data.tar.gz: a9741632d6106d1c4979de1f23e1d1ed904fa103adc1d3ce667d6bf089f1d33b
5
5
  SHA512:
6
- metadata.gz: ebc7266b0b4e86f283c2dfa24e1ce2ec85174027479fc713a6875638e85aa92302adf3abe53f121c7ad25eb9678ed702fc6f7c8f0490a0d201a722daf8376784
7
- data.tar.gz: c41078aeeecd0e46d25366f37884c0f3a0021bd440754c54aa99ad37725502e3e1cd3189dfec80529454a1b9444803ca1d0b86cd21feab711475186b6f21fe90
6
+ metadata.gz: a7914fedafe891ec2ce5032ab8fcd5f9ccdb7ced4fde876a38fcc8d4bf55c257652148afdbbc99e749fb0f4c8668fe9e2befb20cf8495ae5795bbe393e51b25d
7
+ data.tar.gz: 3a7ea92f25c36ccca8e1aff1b56aa670056f19ffcb4b794535c4cce1f28ed0d076a61c6a6cbc3f68156c36f134daad5d7630cf8321f6fc5e4f46bc79c6149756
@@ -141,7 +141,11 @@
141
141
  <%= execution_status_display(execution) %>
142
142
  </td>
143
143
  <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
144
- Step <%= execution.current_step + 1 %>
144
+ <% if execution.completed? %>
145
+ Step <%= execution.workflow.total_steps %>
146
+ <% else %>
147
+ Step <%= execution.current_step + 1 %>
148
+ <% end %>
145
149
  </td>
146
150
  <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
147
151
  <%= execution.workflow_steps.count %> steps
@@ -83,7 +83,7 @@
83
83
  <div class="flex-1">
84
84
  <div class="flex items-center">
85
85
  <h3 class="text-sm font-medium text-gray-900">
86
- Step <%= workflow_step.step %>
86
+ Step <%= workflow_step.step + 1 %>
87
87
  </h3>
88
88
  <%= workflow_step_status(workflow_step, @execution.current_step) %>
89
89
  <% if workflow_step.error? %>
@@ -161,7 +161,7 @@
161
161
  <div class="bg-gray-50 rounded-lg p-4 mt-4">
162
162
  <div class="flex items-center justify-between mb-3">
163
163
  <h4 class="text-sm font-medium text-gray-900">
164
- Chat Conversation for Step <%= workflow_step.step %>
164
+ Chat Conversation for Step <%= workflow_step.step + 1 %>
165
165
  </h4>
166
166
  <div class="text-xs text-gray-500">
167
167
  Chat #<%= workflow_step.chat.id %> |
@@ -3,7 +3,7 @@
3
3
  module MetaWorkflows
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 18 # this is automatically incremented by the build process
6
+ PATCH = 19 # 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.18
4
+ version: 0.8.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonid Medovyy