@lowcodeunit/applications-flow-common 1.33.157-lets-get-social-ish → 1.33.158-lets-get-social-ish
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/services/project.service.mjs +4 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +3 -3
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -611,9 +611,9 @@ class ProjectService {
|
|
|
611
611
|
}
|
|
612
612
|
async UserFeed(page, pageSize, state) {
|
|
613
613
|
return new Promise((resolve, reject) => {
|
|
614
|
-
state.
|
|
614
|
+
state.LoadingFeed = true;
|
|
615
615
|
this.appsFlowSvc.UserFeed(page, pageSize).subscribe(async (response) => {
|
|
616
|
-
state.
|
|
616
|
+
state.LoadingFeed = false;
|
|
617
617
|
if (response.Status.Code === 0) {
|
|
618
618
|
state.Feed = response.Items;
|
|
619
619
|
resolve(response.Items);
|
|
@@ -623,7 +623,7 @@ class ProjectService {
|
|
|
623
623
|
console.log(response);
|
|
624
624
|
}
|
|
625
625
|
}, (err) => {
|
|
626
|
-
state.
|
|
626
|
+
state.LoadingFeed = false;
|
|
627
627
|
reject(err);
|
|
628
628
|
console.log(err);
|
|
629
629
|
});
|