diff --git a/site/guidelines/layout/index.jsx b/site/guidelines/layout/index.jsx index 4bc184a140..74d3e3d008 100644 --- a/site/guidelines/layout/index.jsx +++ b/site/guidelines/layout/index.jsx @@ -79,7 +79,7 @@ export default (
Use a table layout for flexibly viewing and managing large sets of data. The layout uses 100% of the viewport. Items are displayed as rows with their fields organized in columns.
The columns are fixed width and use as much horizontal space as necessary. Columns do not resize when the window changes width. Users can choose which columns to show and how wide each column is. If the grid is wider than the viewport, users horizontally scroll to see more data.
-The table can be of infinite length. Data is loaded as the user scrolls.
+The table can be of infinite length. Data is loaded as the user scrolls. This lets your users access their data most efficiently. Avoid using manual pagination controls, which reduce efficiency.