Skip to content

Commit c0b2fb3

Browse files
committed
minor
1 parent 97554f4 commit c0b2fb3

File tree

1 file changed

+5
-5
lines changed
  • services/static-webserver/client/source/class/osparc/dashboard

1 file changed

+5
-5
lines changed

services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
610610
}, this);
611611
},
612612

613-
__getNextRequestParams: function() {
613+
__getNextPageParams: function() {
614614
if ("nextRequest" in this._resourcesContainer.getFlatList() &&
615615
this._resourcesContainer.getFlatList().nextRequest !== null &&
616616
osparc.utils.Utils.hasParamFromURL(this._resourcesContainer.getFlatList().nextRequest, "offset") &&
@@ -633,10 +633,10 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
633633
}
634634
};
635635

636-
const nextRequestParams = this.__getNextRequestParams();
637-
if (nextRequestParams) {
638-
params.url.offset = nextRequestParams.offset;
639-
params.url.limit = nextRequestParams.limit;
636+
const nextPageParams = this.__getNextPageParams();
637+
if (nextPageParams) {
638+
params.url.offset = nextPageParams.offset;
639+
params.url.limit = nextPageParams.limit;
640640
}
641641
const options = {
642642
resolveWResponse: true

0 commit comments

Comments
 (0)