Skip to content

Commit

Permalink
Merge pull request #17404 from symmetriq/section-row-fix-typo
Browse files Browse the repository at this point in the history
Addon-docs: Fix typo in ArgsTable tooltip
  • Loading branch information
shilman committed Feb 12, 2022
1 parent d881f6f commit 54a8cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/src/blocks/ArgsTable/SectionRow.tsx
Expand Up @@ -100,7 +100,7 @@ export const SectionRow: FC<SectionRowProps> = ({
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' : ''}`;

Expand Down

0 comments on commit 54a8cc6

Please sign in to comment.