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 4799202 commit c03fdaaCopy full SHA for c03fdaa
services/static-webserver/client/source/class/osparc/store/Support.js
@@ -160,12 +160,15 @@ qx.Class.define("osparc.store.Support", {
160
},
161
162
getMailToLabel: function(email, subject) {
163
- const mailto = new qx.ui.basic.Label(this.mailToLink(email, subject, false)).set({
+ const mailto = new qx.ui.basic.Label().set({
164
font: "text-14",
165
allowGrowX: true, // let it grow to make it easier to select
166
selectable: true,
167
rich: true,
168
});
169
+ if (email) {
170
+ mailto.setValue(this.mailToLink(email, subject, false));
171
+ }
172
return mailto;
173
174
0 commit comments