@formio/angular 5.2.12 → 5.2.13-rc.1
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/bundles/formio-angular.umd.js +2 -0
- package/bundles/formio-angular.umd.js.map +1 -1
- package/components/formioreport/formioreport.component.d.ts +1 -0
- package/components/formioreport/formioreport.component.d.ts.map +1 -1
- package/esm2015/components/formioreport/formioreport.component.js +3 -1
- package/fesm2015/formio-angular.js +2 -0
- package/fesm2015/formio-angular.js.map +1 -1
- package/package.json +1 -1
|
@@ -1395,6 +1395,7 @@
|
|
|
1395
1395
|
if (report && report.data) {
|
|
1396
1396
|
_this.ngZone.runOutsideAngular(function () {
|
|
1397
1397
|
_this.setForm({ components: [], report: report });
|
|
1398
|
+
_this.isLoading = false;
|
|
1398
1399
|
});
|
|
1399
1400
|
}
|
|
1400
1401
|
}, function (err) { return _this.onError(err); });
|
|
@@ -1408,6 +1409,7 @@
|
|
|
1408
1409
|
if (changes.report && changes.report.currentValue) {
|
|
1409
1410
|
this.ngZone.runOutsideAngular(function () {
|
|
1410
1411
|
_this.setForm({ report: changes.report.currentValue, components: [] });
|
|
1412
|
+
_this.isLoading = false;
|
|
1411
1413
|
});
|
|
1412
1414
|
}
|
|
1413
1415
|
};
|