@processmaker/modeler 1.43.15 → 1.43.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/modeler",
3
- "version": "1.43.15",
3
+ "version": "1.43.17",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve --mode development",
6
6
  "test:unit": "vue-cli-service test:unit",
@@ -81,4 +81,9 @@ export default {
81
81
  color: #FFFFFF;
82
82
  background-color: #104a75;
83
83
  }
84
+ </style>
85
+ <style>
86
+ .top-rail-container svg.ai-icon path {
87
+ fill: #212529;
88
+ }
84
89
  </style>
@@ -169,7 +169,7 @@
169
169
  />
170
170
 
171
171
  <RailBottom
172
- v-if="!loadingAI"
172
+ v-show="!loadingAI"
173
173
  :nodeTypes="nodeTypes"
174
174
  :paper-manager="paperManager"
175
175
  :graph="graph"
@@ -2192,10 +2192,13 @@ export default {
2192
2192
  this.assetFail = true;
2193
2193
  this.loadingAI = false;
2194
2194
  } else {
2195
+ this.highlightTaskArrays(response.data);
2196
+ setTimeout(() => {
2197
+ this.unhighlightTaskArrays(response.data);
2198
+ }, 1000);
2195
2199
  this.setPromptSessions(response.data.promptSessionId);
2196
2200
  // Successful generation
2197
- this.assetsCreated = true;
2198
- this.unhighlightTaskArrays(response.data);
2201
+ this.assetsCreated = true;
2199
2202
  this.fetchHistory();
2200
2203
  setTimeout(() => {
2201
2204
  this.loadingAI = false;