Using the rock album nested row example if I modify the data to a single null entry.
sourceDataObjectNull = [
{
category: null,
artist: null,
title: null,
label: null,
__children: [
{
title: null,
artist: null,
label: null
}]
}]
When logging the getSourceData from 7.4.2
[{“category”:null,“artist”:null,“title”:null,“label”:null,"__children":[{“title”:null,“artist”:null,“label”:null}]}]
When logging the getSourceData from 8.0.0 (why is there now an extra row?)
[{“category”:null,“artist”:null,“title”:null,“label”:null,"__children":[{“title”:null,“artist”:null,“label”:null}]},{“title”:null,“artist”:null,“label”:null}]