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.
2 parents b0a5c60 + d904673 commit 21a15d5Copy full SHA for 21a15d5
services/static-webserver/client/source/class/osparc/study/PricingUnits.js
@@ -58,13 +58,13 @@ qx.Class.define("osparc.study.PricingUnits", {
58
if (preselectedPricingUnit) {
59
const buttonFound = buttons.find(button => button.getUnitData().getPricingUnitId() === preselectedPricingUnit["pricingUnitId"]);
60
if (buttonFound) {
61
- buttonFound.execute();
+ buttonFound.setValue(true);
62
}
63
} else {
64
// preselect default
65
buttons.forEach(button => {
66
if (button.getUnitData().isDefault()) {
67
- button.execute();
+ button.setValue(true);
68
69
});
70
0 commit comments