mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-12-20 20:01:17 +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
|
break
|
||||||
|
|
||||||
case 'int64':
|
case 'int64':
|
||||||
if (att[1] === 0) {
|
if (att[1] === 0 || att[1] == '') {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue