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

Fix inject node output tooltip extra property count

This commit is contained in:
Nick O'Leary 2021-04-28 22:01:39 +01:00
parent 7df1a03b4b
commit 6da8e92f20
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -214,7 +214,7 @@
for (var i=0,l=props.length; i<l; i++) {
if (i > 0) lab += "\n";
if (i === 5) {
lab += " + "+(props.length-4);
lab += "... +"+(props.length-5);
break;
}
lab += props[i].p+": ";