Skip to content

Commit c790edb

Browse files
committed
minors
1 parent 66053bc commit c790edb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/desktop/credits/PurchasesTableModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ qx.Class.define("osparc.desktop.credits.PurchasesTableModel", {
124124
])
125125
.then(values => {
126126
const licensedItems = values[0];
127-
const purchasesItems = values[1]["data"]; // this one is paginated
127+
const purchasesItems = values[1];
128128

129129
const data = [];
130130
const purchasesCols = osparc.desktop.credits.PurchasesTable.COLS;

services/static-webserver/client/source/class/osparc/store/LicensedItems.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ qx.Class.define("osparc.store.LicensedItems", {
5151
if (urlParams) {
5252
purchasesParams.url = Object.assign(purchasesParams.url, urlParams);
5353
}
54-
return osparc.data.Resources.fetch("licensedItems", "purchases", purchasesParams, options)
54+
return osparc.data.Resources.fetch("licensedItems", "purchases", purchasesParams, options);
5555
},
5656

5757
purchaseLicensedItem: function(licensedItemId, walletId, pricingPlanId, pricingUnitId, numberOfSeats) {

0 commit comments

Comments
 (0)