From df1edd38a88357f3c9e82ed651c825fdfd83bdd5 Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 2 Apr 2023 10:39:57 -0400 Subject: [PATCH] A little more documentation for truncate --- src/components/Table/stories/docs/truncate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/stories/docs/truncate.md b/src/components/Table/stories/docs/truncate.md index bb5120d7..7fbdfcc5 100644 --- a/src/components/Table/stories/docs/truncate.md +++ b/src/components/Table/stories/docs/truncate.md @@ -1,4 +1,4 @@ -When you table has 10 or more rows, consider clipping it by setting the `truncated` option. Readers can request to see all rows by clicking a button below the table. By default this configuration will limit the table to five rows. You can adjust the cutoff point by adjusting the `truncateLength` option. +When you table has 10 or more rows, consider clipping it by setting the `truncated` option. When it is enabled, the table is clipped and readers must request to see all rows by clicking a button below the table. By default this configuration will limit the table to five records. You can adjust the cutoff point by adjusting the `truncateLength` option. This is a good option for simple tables with row counts between 10 and 30. It works best when the table doesn't require interactivity.