Skip to content

Commit f61a022

Browse files
committedJan 15, 2024
docs: adjust infinite scrolling example height
1 parent d5f514a commit f61a022

File tree

1 file changed

+1
-1
lines changed
  • examples/react/virtualized-infinite-scrolling/src

1 file changed

+1
-1
lines changed
 

‎examples/react/virtualized-infinite-scrolling/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ function App() {
189189
style={{
190190
overflow: 'auto', //our scrollable table container
191191
position: 'relative', //needed for sticky header
192-
height: '800px', //should be a fixed height
192+
height: '600px', //should be a fixed height
193193
}}
194194
>
195195
{/* Even though we're still using sematic table tags, we must use CSS grid and flexbox for dynamic row heights */}

0 commit comments

Comments
 (0)
Please sign in to comment.