mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 08:40:01 +00:00
[editor] Fix: Do not store empty string for int field
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
a1e0f8325e
commit
dec24b7b92
1 changed files with 1 additions and 1 deletions
|
@ -638,7 +638,7 @@ new Vue({
|
|||
break
|
||||
|
||||
case 'int64':
|
||||
if (att[1] === 0) {
|
||||
if (att[1] === 0 || att[1] == '') {
|
||||
return false
|
||||
}
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue