mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #4028 from node-red/Add-count-to-join-and-batch-node-labels
Add count to join and batch node labels
This commit is contained in:
commit
af62a520d3
@ -224,7 +224,12 @@
|
|||||||
outputs:1,
|
outputs:1,
|
||||||
icon: "join.svg",
|
icon: "join.svg",
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this._("join.join");
|
var nam = this.name||this._("join.join");
|
||||||
|
if (this.mode === "custom" && !isNaN(Number(this.count))) {
|
||||||
|
nam += " "+this.count;
|
||||||
|
if (this.accumulate === true) { nam+= "+"; }
|
||||||
|
}
|
||||||
|
return nam;
|
||||||
},
|
},
|
||||||
labelStyle: function() {
|
labelStyle: function() {
|
||||||
return this.name?"node_label_italic":"";
|
return this.name?"node_label_italic":"";
|
||||||
|
@ -107,7 +107,14 @@
|
|||||||
outputs:1,
|
outputs:1,
|
||||||
icon: "batch.svg",
|
icon: "batch.svg",
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this._("batch.batch");;
|
var nam = this.name||this._("batch.batch");
|
||||||
|
if (this.mode === "count" && !isNaN(Number(this.count))) {
|
||||||
|
nam += " "+this.count;
|
||||||
|
}
|
||||||
|
if (this.mode === "interval" && !isNaN(Number(this.interval))) {
|
||||||
|
nam += " "+this.interval+"s";
|
||||||
|
}
|
||||||
|
return nam;
|
||||||
},
|
},
|
||||||
labelStyle: function() {
|
labelStyle: function() {
|
||||||
return this.name ? "node_label_italic" : "";
|
return this.name ? "node_label_italic" : "";
|
||||||
|
Loading…
Reference in New Issue
Block a user