Fix: bot timer can't be negative or null.
This commit is contained in:
parent
a5ede49402
commit
1b8531a198
@ -15,6 +15,7 @@
|
||||
* Fix #75: New short video urls makes it difficult to use the settings «Activate chat for these videos».
|
||||
* Fix moderation notes: fix filter button wrongly displayed on notes without associated occupant.
|
||||
* Fix tasks: checkbox state does not change when clicked.
|
||||
* Fix: bot timer can't be negative or null.
|
||||
|
||||
## 12.0.4
|
||||
|
||||
|
@ -97,7 +97,8 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
|
||||
},
|
||||
delay: {
|
||||
inputType: 'number',
|
||||
default: 10
|
||||
default: 10,
|
||||
min: 1
|
||||
}
|
||||
},
|
||||
commands: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user