Don't split single values

This commit is contained in:
nathan 2022-01-19 15:57:59 -07:00
parent 2ea15ed399
commit cc9a6bcf8a

View File

@ -89,7 +89,7 @@ li {
set_value(value)
{
if(typeof value == "string" && value.indexOf(",") > 0)
if(typeof value == "string")
{
value = value.split(",");
}