From 425b016d63996a78a8241e17235265cc1790baf5 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Mon, 26 Oct 2015 09:42:16 +0000 Subject: [PATCH] Add missing space to label in delay node --- nodes/core/core/89-delay.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodes/core/core/89-delay.html b/nodes/core/core/89-delay.html index f060c8f6e..e957c9a4e 100644 --- a/nodes/core/core/89-delay.html +++ b/nodes/core/core/89-delay.html @@ -109,16 +109,16 @@ if (this.pauseType == "delay") { var units = this.timeoutUnits ? this.timeoutUnits.charAt(0) : "s"; if (this.timeoutUnits == "milliseconds") { units = "ms"; } - return this.name||this._("delay.label.delay")+" "+this.timeout+" " + units; + return this.name||this._("delay.label.delay")+" "+this.timeout+" "+units; } else if (this.pauseType == "rate") { var units = this.rateUnits ? this.rateUnits.charAt(0) : "s"; - return this.name||this._("delay.label.limit")+" "+this.rate+" msg/"+ units; + return this.name||this._("delay.label.limit")+" "+this.rate+" msg/"+units; } else if (this.pauseType == "random") { return this.name || this._("delay.label.random"); } else { var units = this.rateUnits ? this.rateUnits.charAt(0) : "s"; - return this.name || this._("delay.label.queue") +this.rate+" msg/"+ units; + return this.name || this._("delay.label.queue")+" "+this.rate+" msg/"+units; } }, labelStyle: function() { // sets the class to apply to the label