Skip to content

Commit

Permalink
@pcrespov capital U
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Dec 9, 2024
1 parent 7c74142 commit 30920d1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ qx.Class.define("osparc.desktop.account.ProfilePage", {
this.__fetchProfile();

this._add(this.__createProfileUser());
this._add(this.__createPrivacySection());
if (osparc.utils.Utils.isDevelopmentPlatform()) {
this._add(this.__createPrivacySection());
}
if (osparc.store.StaticInfo.getInstance().is2FARequired()) {
this._add(this.__create2FASection());
}
Expand Down Expand Up @@ -107,7 +109,7 @@ qx.Class.define("osparc.desktop.account.ProfilePage", {
});

const form = new qx.ui.form.Form();
form.add(username, "username", null, "username");
form.add(username, "Username", null, "username");
form.add(firstName, "First Name", null, "firstName");
form.add(lastName, "Last Name", null, "lastName");
form.add(email, "Email", null, "email");
Expand Down

0 comments on commit 30920d1

Please sign in to comment.