diff --git a/packages/node_modules/@node-red/nodes/core/common/20-inject.html b/packages/node_modules/@node-red/nodes/core/common/20-inject.html index 0fafa9df0..d50725d51 100644 --- a/packages/node_modules/@node-red/nodes/core/common/20-inject.html +++ b/packages/node_modules/@node-red/nodes/core/common/20-inject.html @@ -320,7 +320,7 @@ } // but replace with repeat one if set to repeat if ((this.repeat && this.repeat != 0) || this.crontab) { - suffix = " ↻"; + suffix = "\t↻"; } if (this.name) { return this.name+suffix; diff --git a/packages/node_modules/@node-red/nodes/core/common/21-debug.html b/packages/node_modules/@node-red/nodes/core/common/21-debug.html index 88d51b283..1e472370a 100644 --- a/packages/node_modules/@node-red/nodes/core/common/21-debug.html +++ b/packages/node_modules/@node-red/nodes/core/common/21-debug.html @@ -86,7 +86,7 @@ }, label: function() { var suffix = ""; - if (this.console === true || this.console === "true") { suffix = " ⇲"; } + if (this.console === true || this.console === "true") { suffix = "\t⇲"; } if (this.targetType === "jsonata") { return (this.name || "JSONata") + suffix; }