@processmaker/modeler 1.24.1 → 1.24.3

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.24.1",
3
+ "version": "1.24.3",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "open-cypress": "TZ=UTC cypress open",
@@ -155,7 +155,7 @@ export default {
155
155
 
156
156
  if (this.isSequenceFlow(type) && this.isConnectedToGateway(definition)) {
157
157
  let helper = this.$t('Enter the expression that describes the workflow condition');
158
- helper += ' <a href="https://processmaker.gitbook.io/processmaker/v/processmaker/designing-processes/process-design/model-your-process/flow-indicator-elements/the-quick-toolbar#expression-syntax-components-to-specify-request-conditions-that-trigger-an-outgoing-sequence-flow-element" target="_blank"><i class="far fa-question-circle mr-1"></a>';
158
+ helper += ' <a href="https://processmaker.gitbook.io/processmaker/v/processmaker-4.3/designing-processes/expression-syntax-components" target="_blank"><i class="far fa-question-circle mr-1"></a>';
159
159
  const expressionConfig = {
160
160
  component: 'FormInput',
161
161
  config: {
@@ -181,8 +181,8 @@ export default {
181
181
  const params = {
182
182
  order_direction: 'asc',
183
183
  per_page: 20,
184
- status: 'all',
185
184
  include: 'events,category',
185
+ filter_without_assignments: true,
186
186
  };
187
187
 
188
188
  if (filter) {
@@ -203,6 +203,7 @@ export default {
203
203
  if (this.config.processId) {
204
204
  window.ProcessMaker.apiClient.get('processes/' + this.config.processId, { params: {
205
205
  include: 'events,category',
206
+ filter_without_assignments: true,
206
207
  } }).then(response => {
207
208
  this.selectedProcessInfo = response.data;
208
209
  });