JSON.stringify jank

Ccorporat3/17/2022
I discovered that the problem is JSON.stringify, not parse
Ccorporat3/17/2022
wtf is this
Ccorporat3/17/2022
my fix for this was
JSON.stringify(dragdata, (key,value)=>{
  if(typeof value=== "array")
    return JSON.stringify(value);
  return value;
});
Ccorporat3/17/2022
and then in the implementation of _onDropItemCreate I did an additional parse of arrays
Ccorporat3/17/2022
🤷