We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b2e03 commit d81494eCopy full SHA for d81494e
services/static-webserver/client/source/class/osparc/store/Data.js
@@ -46,14 +46,10 @@ qx.Class.define("osparc.store.Data", {
46
const params = {
47
url: {
48
locationId,
49
+ path: path || null,
50
+ cursor: cursor || null,
51
}
52
};
- if (path) {
- params["url"]["path"] = path;
53
- }
54
- if (cursor) {
55
- params["url"]["cursor"] = cursor;
56
57
let pagResp = null;
58
if (path) {
59
pagResp = await osparc.data.Resources.fetch("storagePaths", cursor ? "getPathsPage" : "getPaths", params);
0 commit comments