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 de2344f commit 5070d13Copy full SHA for 5070d13
services/static-webserver/client/source/class/osparc/store/Data.js
@@ -259,7 +259,7 @@ qx.Class.define("osparc.store.Data", {
259
.catch(err => osparc.FlashMessenger.logError(err, this.tr("Unsuccessful file deletion")));
260
},
261
262
- deleteFiles: function(items) {
+ deleteFiles: function(paths) {
263
if (!osparc.data.Permissions.getInstance().canDo("study.node.data.delete", true)) {
264
return null;
265
}
@@ -269,7 +269,7 @@ qx.Class.define("osparc.store.Data", {
269
locationId: 0,
270
271
data: {
272
- items,
+ paths,
273
274
};
275
return osparc.data.Resources.fetch("storagePaths", "batchDelete", params)
0 commit comments