@linzjs/step-ag-grid 17.4.8 → 17.4.9

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.
@@ -25597,9 +25597,13 @@ const findRow = async (rowId, within) => {
25597
25597
  let row;
25598
25598
  await act(async () => {
25599
25599
  row = await findQuick({ tagName: `.ag-center-cols-container div[row-id='${rowId}']:not(:empty)` }, within);
25600
- const leftCols = await findQuick({ tagName: `.ag-pinned-left-cols-container div[row-id='${rowId}']` }, within);
25601
- const rightCols = await findQuick({ tagName: `.ag-pinned-right-cols-container div[row-id='${rowId}']` }, within);
25602
- const combineChildren = [...leftCols.children, ...row.children, ...rightCols.children];
25600
+ let combineChildren = [...row.children];
25601
+ const leftCols = queryQuick({ tagName: `.ag-pinned-left-cols-container div[row-id='${rowId}']` }, within);
25602
+ if (leftCols)
25603
+ combineChildren = [...leftCols.children, ...combineChildren];
25604
+ const rightCols = queryQuick({ tagName: `.ag-pinned-right-cols-container div[row-id='${rowId}']` }, within);
25605
+ if (rightCols)
25606
+ combineChildren = [...rightCols.children, ...combineChildren];
25603
25607
  row.replaceChildren(...combineChildren);
25604
25608
  });
25605
25609
  return row;