1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Handle node name as unsanitized text in debug sidebar

This commit is contained in:
Nick O'Leary 2019-03-12 10:37:24 +00:00
parent 28e08ebaf5
commit 3f1b0b986f
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -449,7 +449,7 @@ RED.debug = (function() {
var metaRow = $('<div class="debug-message-meta"></div>').appendTo(msg);
$('<span class="debug-message-date">'+ getTimestamp()+'</span>').appendTo(metaRow);
if (sourceNode) {
$('<a>',{href:"#",class:"debug-message-name"}).html('node: '+(sourceNode.name||sourceNode.id))
$('<a>',{href:"#",class:"debug-message-name"}).text('node: '+(sourceNode.name||sourceNode.id))
.appendTo(metaRow)
.click(function(evt) {
evt.preventDefault();