Skip to content

Commit

Permalink
Merge branch 'master' into pr-osparc-add-cli-to-debug-state
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz authored Oct 31, 2023
2 parents 2171f98 + b0a50aa commit b5ce092
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 b5ce092

Please sign in to comment.