@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/dist/modeler.common.js +106 -105
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +106 -105
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +2 -2
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/inspectors/InspectorPanel.vue +1 -1
- package/src/components/nodes/subProcess/SubProcessFormSelect.vue +2 -1
package/package.json
CHANGED
|
@@ -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/
|
|
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
|
});
|