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

Fix display of link node list within subflow

Fixes #2140
This commit is contained in:
Nick O'Leary 2019-04-25 11:58:23 +01:00
parent 5c962aa899
commit c7587960fb
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -54,7 +54,7 @@
flowMap[activeSubflow.id] = {
id: activeSubflow.id,
class: 'palette-header',
label: "Subflow : "+(activeSubflow.name || activeSubflow.id)+(node.z===ws.id ? " *":""),
label: "Subflow : "+(activeSubflow.name || activeSubflow.id),
expanded: true,
children: []
};