Skip to content

Commit

Permalink
Merge pull request #4399 from kazuhitoyokoi/master-fixrepeat4inject
Browse files Browse the repository at this point in the history
Fix unintended new line in node name
  • Loading branch information
knolleary committed Nov 1, 2023
2 parents 245751b + fae3a5c commit 1451fb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 1451fb9

Please sign in to comment.