From 4e00ab3b2d3428d1407243632b4cba086410c220 Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Tue, 25 Mar 2014 11:09:38 +0000 Subject: [PATCH] fix delay node name when using random setting --- nodes/core/core/89-delay.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/core/89-delay.html b/nodes/core/core/89-delay.html index bd282a9c4..5102c3a16 100644 --- a/nodes/core/core/89-delay.html +++ b/nodes/core/core/89-delay.html @@ -103,7 +103,7 @@ var units = this.rateUnits ? this.rateUnits.charAt(0) : "s"; return this.name||"limit "+this.rate+" msg/"+ units; } else if (this.pauseType == "random") { - return "random"; + return this.name || "random"; } return "foo"; },