From eeea8e530ea58ab52ce65bdfb45199f65beeb957 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Thu, 17 Nov 2016 13:56:37 +0000 Subject: [PATCH] add indicator for fire once on inject node --- nodes/core/core/20-inject.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nodes/core/core/20-inject.html b/nodes/core/core/20-inject.html index 14117e16d..1c8629bec 100644 --- a/nodes/core/core/20-inject.html +++ b/nodes/core/core/20-inject.html @@ -201,6 +201,11 @@ icon: "inject.png", label: function() { var suffix = ""; + // if fire once then add small indication + if (this.once) { + suffix = " ¹"; + } + // but replace with repeat one if set to repeat if (this.repeat || this.crontab) { suffix = " ↻"; }