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 7c5e62e commit a5d39efCopy full SHA for a5d39ef
services/static-webserver/client/source/class/osparc/po/UsersPending.js
@@ -86,9 +86,8 @@ qx.Class.define("osparc.po.UsersPending", {
86
},
87
};
88
params.data["invitation"] = {};
89
- const extraCreditsInUsd = form.getItems()["credits"].getValue();
90
- if (extraCreditsInUsd > 0) {
91
- params.data["invitation"]["extraCreditsInUsd"] = extraCreditsInUsd;
+ if (form.getItems()["credits"].getValue() > 0) {
+ params.data["invitation"]["extraCreditsInUsd"] = form.getItems()["credits"].getValue();
92
}
93
if (form.getItems()["withExpiration"].getValue()) {
94
params.data["invitation"]["trialAccountDays"] = form.getItems()["trialDays"].getValue();
0 commit comments