Skip to content

Commit

Permalink
fix(source-management): table pagination bug (PostHog#29082)
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE authored Feb 21, 2025
1 parent dfcf959 commit 3b5ff4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export function DataWarehouseManagedSourcesTable(): JSX.Element {

return (
<LemonTable
id="managed-sources"
dataSource={dataWarehouseSources?.results ?? []}
loading={dataWarehouseSourcesLoading}
disableTableWhileLoading={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export function DataWarehouseSelfManagedSourcesTable(): JSX.Element {

return (
<LemonTable
id="self-managed-sources"
dataSource={selfManagedTables}
pagination={{ pageSize: 10 }}
columns={[
Expand Down

0 comments on commit 3b5ff4a

Please sign in to comment.