From 40ad4bdbd853603aadab1153b0aecfe83b48b828 Mon Sep 17 00:00:00 2001 From: Cor Bosman Date: Sat, 22 Apr 2017 23:08:09 +0200 Subject: [PATCH] dont match only part of the node type (#1242) --- editor/js/ui/tab-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/js/ui/tab-info.js b/editor/js/ui/tab-info.js index f96fbdbf3..fa13f36bb 100644 --- a/editor/js/ui/tab-info.js +++ b/editor/js/ui/tab-info.js @@ -125,7 +125,7 @@ RED.sidebar.info = (function() { $(table).appendTo(content); $("
").appendTo(content); if (!subflowNode && node.type != "comment") { - var helpText = $("script[data-help-name$='"+node.type+"']").html()||""; + var helpText = $("script[data-help-name='"+node.type+"']").html()||""; addTargetToExternalLinks($('
'+helpText+'
').appendTo(content)); } if (subflowNode) {