mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
remove repeat symbol from inject if repeat is 0
This commit is contained in:
parent
b9379f2ddf
commit
b1e3fc5761
@ -203,7 +203,7 @@
|
|||||||
suffix = " ¹";
|
suffix = " ¹";
|
||||||
}
|
}
|
||||||
// but replace with repeat one if set to repeat
|
// but replace with repeat one if set to repeat
|
||||||
if (this.repeat || this.crontab) {
|
if ((this.repeat && this.repeat != 0) || this.crontab) {
|
||||||
suffix = " ↻";
|
suffix = " ↻";
|
||||||
}
|
}
|
||||||
if (this.name) {
|
if (this.name) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user