Skip to content

Commit 194d225

Browse files
🎨 [Frontend] S4L: Make Company Name required (#7129)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 1433e6e commit 194d225

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

services/static-webserver/client/source/class/osparc/auth/ui/RequestAccount.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,13 @@ qx.Class.define("osparc.auth.ui.RequestAccount", {
8686
switch (osparc.product.Utils.getProductName()) {
8787
case "s4l":
8888
this._form.add(organization, this.tr("Company Name"), null, "company");
89+
organization.setRequired(true);
8990
break;
9091
case "s4lacad":
9192
case "s4ldesktopacad":
93+
this._form.add(organization, this.tr("University"), null, "university");
94+
organization.setRequired(true);
95+
break;
9296
case "tiplite":
9397
this._form.add(organization, this.tr("University"), null, "university");
9498
break;

0 commit comments

Comments
 (0)