Fix unintended new line in node name

This commit is contained in:
Kazuhito Yokoi 2023-10-29 14:58:03 +09:00
parent ee48a2f2bf
commit fae3a5c26a
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@
} }
// but replace with repeat one if set to repeat // but replace with repeat one if set to repeat
if ((this.repeat && this.repeat != 0) || this.crontab) { if ((this.repeat && this.repeat != 0) || this.crontab) {
suffix = " ↻"; suffix = "\t↻";
} }
if (this.name) { if (this.name) {
return this.name+suffix; return this.name+suffix;

View File

@ -86,7 +86,7 @@
}, },
label: function() { label: function() {
var suffix = ""; var suffix = "";
if (this.console === true || this.console === "true") { suffix = " ⇲"; } if (this.console === true || this.console === "true") { suffix = "\t⇲"; }
if (this.targetType === "jsonata") { if (this.targetType === "jsonata") {
return (this.name || "JSONata") + suffix; return (this.name || "JSONata") + suffix;
} }