@sumaris-net/ngx-components 1.11.7 → 1.11.8

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.
@@ -18126,11 +18126,11 @@
18126
18126
  }
18127
18127
  // Response event
18128
18128
  else if (event instanceof i2$1.HttpResponse || event instanceof FileResponse) {
18129
- file.result = event.body;
18129
+ file.body = event.body;
18130
18130
  file.progress = 1;
18131
- var message = ((_a = file.result) === null || _a === void 0 ? void 0 : _a.message) || event.statusText || 'OK';
18131
+ var message = ((_a = file.body) === null || _a === void 0 ? void 0 : _a.message) || event.statusText || 'OK';
18132
18132
  console.debug("[upload-file] " + file.name + ": " + message
18133
- + (((_b = file.result) === null || _b === void 0 ? void 0 : _b.finalName) ? " (finalName: " + ((_c = file.result) === null || _c === void 0 ? void 0 : _c.finalName) + ")" : ''));
18133
+ + (((_b = file.body) === null || _b === void 0 ? void 0 : _b.finalName) ? " (finalName: " + ((_c = file.body) === null || _c === void 0 ? void 0 : _c.finalName) + ")" : ''));
18134
18134
  }
18135
18135
  // Other events
18136
18136
  else {