1
0
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:
Dave Conway-Jones 2017-03-23 22:04:53 +00:00
parent b9379f2ddf
commit b1e3fc5761

View File

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