@fundamental-ngx/platform 0.57.4-rc.22 → 0.57.4-rc.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2348,7 +2348,7 @@ function convertTreeObjectsToTableRows(source, selectionMode, tableRows, rowComp
2348
2348
  });
2349
2349
  const selectedAll = selectedChildren.length === children.length && children.length > 0;
2350
2350
  const selectedSome = selectedChildren.length > 0;
2351
- if (r.checked) {
2351
+ if (r.checked && selectionMode === SelectionMode.MULTIPLE) {
2352
2352
  applySelectionToChildren(rows, r, [], []);
2353
2353
  return;
2354
2354
  }