From 165aab590465f308c7f80de212482f775e558d24 Mon Sep 17 00:00:00 2001 From: paanSinghCoder Date: Tue, 5 May 2026 15:13:42 +0530 Subject: [PATCH] fix(data-table): make virtualized loader rows scroll with content Loader skeleton rows were pinned to the bottom via position: sticky; they should render in normal flow at the end of the list. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../components/data-table/components/virtualized-content.tsx | 2 +- .../raystack/components/data-table/data-table.module.css | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/raystack/components/data-table/components/virtualized-content.tsx b/packages/raystack/components/data-table/components/virtualized-content.tsx index d6f3b5a9b..9b07332a3 100644 --- a/packages/raystack/components/data-table/components/virtualized-content.tsx +++ b/packages/raystack/components/data-table/components/virtualized-content.tsx @@ -169,7 +169,7 @@ function VirtualLoaderRows({ count: number; }) { return ( -
+
{Array.from({ length: count }).map((_, rowIndex) => (