@processmaker/modeler 1.24.1 → 1.24.2
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 +64 -63
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +64 -63
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +1 -1
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/nodes/subProcess/SubProcessFormSelect.vue +2 -1
package/package.json
CHANGED
|
@@ -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
|
});
|