@processmaker/screen-builder 3.8.11 → 3.8.12

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/screen-builder",
3
- "version": "3.8.11",
3
+ "version": "3.8.12",
4
4
  "scripts": {
5
5
  "dev": "VITE_COVERAGE=true vite",
6
6
  "build": "vite build",
@@ -531,6 +531,7 @@ export default {
531
531
  const url = `?user_id=${this.userId}&status=ACTIVE&process_request_id=${requestId}&include_sub_tasks=1${timestamp}`;
532
532
  return this.$dataProvider
533
533
  .getTasks(url).then((response) => {
534
+ this.$emit("load-data-task", response);
534
535
  if (response.data.data.length > 0) {
535
536
  let task = response.data.data[0];
536
537
  if (task.process_request_id !== this.requestId) {