monkey-front-core 0.0.473 → 0.0.474
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/esm2020/lib/core/services/store/monkeyecx-store-base.service.mjs +3 -2
- package/fesm2015/monkey-front-core.mjs +2 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.474.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.473.tgz +0 -0
|
@@ -5755,11 +5755,12 @@ class MonkeyEcxCommonsStoreBaseService extends MonkeyEcxCommonsService {
|
|
|
5755
5755
|
try {
|
|
5756
5756
|
const data = await this.monkeyecxService?.get(url).toPromise();
|
|
5757
5757
|
this.handleResponseData(data, updateLinks);
|
|
5758
|
+
this.updateControl({ isLoading: false });
|
|
5758
5759
|
}
|
|
5759
5760
|
catch (e) {
|
|
5761
|
+
this.updateControl({ isLoading: false });
|
|
5760
5762
|
throw new Error(`${e?.message}`);
|
|
5761
5763
|
}
|
|
5762
|
-
this.updateControl({ isLoading: false });
|
|
5763
5764
|
}
|
|
5764
5765
|
async loadPageData(pagination) {
|
|
5765
5766
|
const { store, selector } = this;
|