Skip to content

Commit 4993888

Browse files
committed
[skip ci] minors
1 parent 712b472 commit 4993888

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/desktop/WorkbenchView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ qx.Class.define("osparc.desktop.WorkbenchView", {
4242
logLevel: "DEBUG",
4343
}, {
4444
nodeId: null,
45-
messages: ["Contrary to popular belief, Lorem Ipsum is not simply random text.\nIt has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.\nRichard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 'de Finibus Bonorum et Malorum' (The Extremes of Good and Evil) by Cicero, written in 45 BC.\nThis book is a treatise on the theory of ethics, very popular during the Renaissance.\nThe first line of Lorem Ipsum, 'Lorem ipsum dolor sit amet..', comes from a line in section 1.10.32."],
45+
messages: ["Contrary\nto popular belief,\nLorem Ipsum is not simply random text.\nIt has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.\nRichard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 'de Finibus Bonorum et Malorum' (The Extremes of Good and Evil) by Cicero, written in 45 BC.\nThis book is a treatise on the theory of ethics, very popular during the Renaissance.\nThe first line of Lorem Ipsum, 'Lorem ipsum dolor sit amet..', comes from a line in section 1.10.32."],
4646
logLevel: "INFO",
4747
}, {
4848
nodeId: null,

services/static-webserver/client/source/class/osparc/widget/logger/LoggerModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ qx.Class.define("osparc.widget.logger.LoggerModel", {
117117
newRow["level"] = this.self().getLevelIcon(newRow.logLevel);
118118
newRow["time"] = osparc.utils.Utils.formatTime(newRow.timeStamp, true);
119119
newRow["who"] = newRow.label;
120-
newRow["msgRich"] = newRow.msg.replace("\n", "<br>");
120+
newRow["msgRich"] = newRow.msg.replaceAll("\n", "<br>");
121121
this.__rawData.push(newRow);
122122
});
123123
},

services/static-webserver/client/source/class/osparc/widget/logger/LoggerView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ qx.Class.define("osparc.widget.logger.LoggerView", {
281281
colModel.setDataCellRenderer(this.self().POS.TIMESTAMP, new osparc.ui.table.cellrenderer.Html().set({
282282
defaultCellStyle: "user-select: text"
283283
}));
284-
colModel.setDataCellRenderer(this.self().POS.ORIGIN, new qx.ui.table.cellrenderer.String());
284+
colModel.setDataCellRenderer(this.self().POS.ORIGIN, new osparc.ui.table.cellrenderer.Html());
285285
colModel.setDataCellRenderer(this.self().POS.MESSAGE, new osparc.ui.table.cellrenderer.Html().set({
286286
defaultCellStyle: "user-select: text; text-wrap: wrap"
287287
}));

0 commit comments

Comments
 (0)