Fix: bot timer can't be negative or null.

This commit is contained in:
John Livingston 2025-05-21 16:51:47 +02:00
parent a5ede49402
commit 1b8531a198
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@
* Fix #75: New short video urls makes it difficult to use the settings «Activate chat for these videos». * 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 moderation notes: fix filter button wrongly displayed on notes without associated occupant.
* Fix tasks: checkbox state does not change when clicked. * Fix tasks: checkbox state does not change when clicked.
* Fix: bot timer can't be negative or null.
## 12.0.4 ## 12.0.4

View File

@ -97,7 +97,8 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
}, },
delay: { delay: {
inputType: 'number', inputType: 'number',
default: 10 default: 10,
min: 1
} }
}, },
commands: { commands: {