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 5dde4a4 commit 5b8fd1aCopy full SHA for 5b8fd1a
services/static-webserver/client/source/class/osparc/utils/Utils.js
@@ -92,6 +92,8 @@ qx.Class.define("osparc.utils.Utils", {
92
FLOATING_Z_INDEX: 110000,
93
94
replaceTokens: function(str, key, value) {
95
+ // `str` might be a a localized string, get the string first
96
+ str = str.toString ? str.toString() : str;
97
return str.replaceAll("${"+key+"}", value);
98
},
99
0 commit comments