@lowcodeunit/applications-flow-common 1.37.19-home-page → 1.37.23-home-page
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/applications-flow.service.mjs +2 -2
- package/esm2020/lib/services/eac.service.mjs +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +2 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -294,7 +294,7 @@ class ApplicationsFlowService {
|
|
|
294
294
|
});
|
|
295
295
|
}
|
|
296
296
|
LoadUserFeed(page, pageSize, types, project, applications) {
|
|
297
|
-
// console.log('
|
|
297
|
+
// console.log('page size: ', pageSize);
|
|
298
298
|
var apps = JSON.stringify(applications || []);
|
|
299
299
|
return this.http.get(`${this.apiRoot}/api/lowcodeunit/userfeed?page=${page}&pageSize=${pageSize}&types=${types}&project=${project}&applications=${apps}`, {
|
|
300
300
|
headers: this.loadHeaders(),
|
|
@@ -960,6 +960,7 @@ class EaCService {
|
|
|
960
960
|
await this.projectService.GetActiveEnterprise(this.State);
|
|
961
961
|
}
|
|
962
962
|
async LoadUserFeed(page, pageSize, forCheck = false, filterStr = '') {
|
|
963
|
+
// console.log("page size: ", pageSize)
|
|
963
964
|
await this.projectService.LoadUserFeed(page, pageSize, filterStr, forCheck, this.State);
|
|
964
965
|
}
|
|
965
966
|
GenerateRoutedApplications(applications) {
|