meta_workflows 0.9.12 → 0.9.13
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/meta_workflows/_response_lexi.html.erb +11 -11
- data/lib/meta_workflows/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: 7f4d3efc62028f81a371bad517bc54f92527ac1b734b2ba2591e29b3ad9c2964
|
4
|
+
data.tar.gz: 7c24d71b9471737fa4fae693c1336229d0dbde16a95bd16fea5127ce847d2c7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4a3cfeda85bc79adaf82267bbf952c9ff8c5fc0bd9398ae4279efb916b405e6a3a2f1e3baedb7e45203222a233361a831f660dc471a1dfa9cc08d5c5def17f3
|
7
|
+
data.tar.gz: 0b1065fa9f22c1f74b301f4196e9b2a250eeac081ffe243a2b97348041434579b28cd1150dc31b393a83665641b44f28ecc1985dedbb9c489fc9c5d2e63ca153
|
@@ -43,16 +43,16 @@
|
|
43
43
|
</div>
|
44
44
|
<% end %>
|
45
45
|
<% end %>
|
46
|
-
</div>
|
47
|
-
<% end %>
|
48
46
|
|
49
|
-
<div class="lexi-loader-container">
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
47
|
+
<div class="lexi-loader-container">
|
48
|
+
<%= turbo_frame_tag target_frame_id(record, loader: true) do %>
|
49
|
+
<% if chat.blank? || chat.messages.empty? %>
|
50
|
+
<%= render partial: meta_loader_message, locals: {
|
51
|
+
record: local_assigns[:record],
|
52
|
+
step_progress: default_step_progress
|
53
|
+
} %>
|
54
|
+
<% end %>
|
56
55
|
<% end %>
|
57
|
-
|
58
|
-
</div>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
<% end %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module MetaWorkflows
|
4
4
|
MAJOR = 0
|
5
5
|
MINOR = 9
|
6
|
-
PATCH =
|
6
|
+
PATCH = 13 # this is automatically incremented by the build process
|
7
7
|
|
8
8
|
VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
|
9
9
|
end
|