Skip to content

Commit a937ebd

Browse files
committed
aesthetics
1 parent 31e8b6f commit a937ebd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/auth/core/BaseAuthPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ qx.Class.define("osparc.auth.core.BaseAuthPage", {
5656
},
5757

5858
statics: {
59-
FORM_WIDTH: 320
59+
FORM_WIDTH: 330
6060
},
6161

6262
/*

services/static-webserver/client/source/class/osparc/ui/form/IntlTelInput.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ qx.Class.define("osparc.ui.form.IntlTelInput", {
138138
},
139139

140140
verifyPhoneNumber: function() {
141+
const value = this.getValue();
141142
const feedbackIcon = this.getChildControl("feedback-icon");
142-
feedbackIcon.show();
143+
feedbackIcon.setVisibility(value ? "visible" : "excluded");
143144
const isValid = this.isValidNumber();
144145
feedbackIcon.set({
145146
toolTipText: "E.164: " + this.getValue(),

0 commit comments

Comments
 (0)