From 730969c901392e499a3f266eacd9aedda507a5cb Mon Sep 17 00:00:00 2001 From: Lukas Harbarth Date: Thu, 23 Oct 2025 15:07:14 +0200 Subject: [PATCH] docs(AnalyticalTable): improve `minRows` description --- packages/main/src/components/AnalyticalTable/types/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/main/src/components/AnalyticalTable/types/index.ts b/packages/main/src/components/AnalyticalTable/types/index.ts index 7340e0dd867..d2599aafc5e 100644 --- a/packages/main/src/components/AnalyticalTable/types/index.ts +++ b/packages/main/src/components/AnalyticalTable/types/index.ts @@ -691,7 +691,10 @@ export interface AnalyticalTablePropTypes extends Omit { /** * The minimum number of rows that are displayed. If the data contains fewer entries than `minRows`, it will be filled with empty rows. * - * __Note:__ To prevent the height of the table from jumping when e.g. filtering or fetching data, it's recommended setting `minRows` to the same value as `visibleRows`. + * __Note:__ + * - To prevent the height of the table from jumping when e.g. filtering or fetching data, it's recommended setting `minRows` to the same value as `visibleRows`. + * - Values less than 1 are __not__ supported! + * * * @default 5 */