Skip to content

Commit

Permalink
🐛 Demo fixes (#4962)
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz authored and matusdrobuliak66 committed Nov 2, 2023
1 parent 0852b69 commit 42da362
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,8 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
};
osparc.data.Resources.fetch("studies", "delete", params, studyId);
};
this._startStudyById(studyId, openCB, cancelCB);
const isStudyCreation = true;
this._startStudyById(studyId, openCB, cancelCB, isStudyCreation);
})
.catch(err => {
this._hideLoadingPage();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,8 @@ qx.Class.define("osparc.desktop.credits.AutoRecharge", {

__getFieldsData: function() {
return {
minBalanceInUsd: 0,
topUpAmountInUsd: this.__topUpAmountField.getValue(),
topUpCountdown: 30,
monthlyLimitInUsd: this.__monthlyLimitField.getValue(),
paymentMethodId: this.__paymentMethodField.getSelection()[0].getModel()
};
},
Expand Down

0 comments on commit 42da362

Please sign in to comment.