Treat none as a boolean false in drag-and-drop

This commit is contained in:
cmdr2 2022-12-24 19:41:36 +05:30
parent 5f6b798e35
commit 84bddee2ce

View File

@ -25,6 +25,7 @@ function parseBoolean(stringValue) {
case "no":
case "off":
case "0":
case "none":
case null:
case undefined:
return false;