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 1097712 commit d23200bCopy full SHA for d23200b
services/static-webserver/client/source/class/osparc/info/ServiceUtils.js
@@ -86,12 +86,7 @@ qx.Class.define("osparc.info.ServiceUtils", {
86
* @param serviceData {Object} Serialized Service Object
87
*/
88
createContact: function(serviceData) {
89
- const contact = new qx.ui.basic.Label();
90
- contact.set({
91
- value: osparc.store.Support.mailToText(serviceData["contact"], (serviceData["name"] + ":" + serviceData["version"])),
92
- selectable: true,
93
- rich: true
94
- });
+ const contact = osparc.store.Support.getMailToLabel(serviceData["contact"], serviceData["name"] + ":" + serviceData["version"]);
95
return contact;
96
},
97
0 commit comments