diff --git a/lib/components/src/blocks/ArgsTable/SectionRow.tsx b/lib/components/src/blocks/ArgsTable/SectionRow.tsx index 3155dfc84957..d92ab2985396 100644 --- a/lib/components/src/blocks/ArgsTable/SectionRow.tsx +++ b/lib/components/src/blocks/ArgsTable/SectionRow.tsx @@ -100,7 +100,7 @@ export const SectionRow: FC = ({ const caption = level === 'subsection' ? `${itemCount} item${itemCount !== 1 ? 's' : ''}` : ''; const icon = expanded ? 'arrowdown' : 'arrowright'; - const helperText = `${expanded ? 'Hide' : 'Side'} ${ + const helperText = `${expanded ? 'Hide' : 'Show'} ${ level === 'subsection' ? itemCount : label } item${itemCount !== 1 ? 's' : ''}`;