mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add link label value as portLabels
This commit is contained in:
parent
6cf53c611b
commit
c4554b71d3
@ -280,6 +280,9 @@
|
|||||||
inputs:0,
|
inputs:0,
|
||||||
outputs:1,
|
outputs:1,
|
||||||
icon: "link-out.png",
|
icon: "link-out.png",
|
||||||
|
outputLabels: function(i) {
|
||||||
|
return this.name||this._("link.linkIn");
|
||||||
|
},
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this._("link.linkIn");
|
return this.name||this._("link.linkIn");
|
||||||
},
|
},
|
||||||
@ -307,6 +310,9 @@
|
|||||||
inputs:1,
|
inputs:1,
|
||||||
outputs:0,
|
outputs:0,
|
||||||
icon: "link-out.png",
|
icon: "link-out.png",
|
||||||
|
inputLabels: function(i) {
|
||||||
|
return this.name||this._("link.linkOut");
|
||||||
|
},
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this._("link.linkOut");
|
return this.name||this._("link.linkOut");
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user