Skip to content

Commit 42da362

Browse files
odeimaizmatusdrobuliak66
authored andcommitted
πŸ› Demo fixes (#4962)
1 parent 0852b69 commit 42da362

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,8 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
768768
};
769769
osparc.data.Resources.fetch("studies", "delete", params, studyId);
770770
};
771-
this._startStudyById(studyId, openCB, cancelCB);
771+
const isStudyCreation = true;
772+
this._startStudyById(studyId, openCB, cancelCB, isStudyCreation);
772773
})
773774
.catch(err => {
774775
this._hideLoadingPage();

β€Žservices/static-webserver/client/source/class/osparc/desktop/credits/AutoRecharge.jsβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,8 @@ qx.Class.define("osparc.desktop.credits.AutoRecharge", {
229229

230230
__getFieldsData: function() {
231231
return {
232-
minBalanceInUsd: 0,
233232
topUpAmountInUsd: this.__topUpAmountField.getValue(),
234-
topUpCountdown: 30,
233+
monthlyLimitInUsd: this.__monthlyLimitField.getValue(),
235234
paymentMethodId: this.__paymentMethodField.getSelection()[0].getModel()
236235
};
237236
},

0 commit comments

Comments
Β (0)