Skip to content

Commit

Permalink
Fix component data typo “the each” on nested params
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Jun 16, 2023
1 parent ebb53e6 commit 24d52cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export const params = [
type: 'string',
required: true,
description:
'If `html` is set, this is not required. Text to use within the each key. If `html` is provided, the `text` option will be ignored.'
'If `html` is set, this is not required. Text to use within each key. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'key.html',
type: 'string',
required: true,
description:
'If `text` is set, this is not required. HTML to use within the each key. If `html` is provided, the `text` option will be ignored.'
'If `text` is set, this is not required. HTML to use within each key. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'key.classes',
Expand All @@ -41,14 +41,14 @@ export const params = [
type: 'string',
required: true,
description:
'If `html` is set, this is not required. Text to use within the each value. If `html` is provided, the `text` option will be ignored.'
'If `html` is set, this is not required. Text to use within each value. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'value.html',
type: 'string',
required: true,
description:
'If `text` is set, this is not required. HTML to use within the each value. If `html` is provided, the `text` option will be ignored.'
'If `text` is set, this is not required. HTML to use within each value. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'value.classes',
Expand Down Expand Up @@ -87,7 +87,7 @@ export const params = [
type: 'string',
required: true,
description:
'If `text` is set, this is not required. HTML to use within the each action item. If `html` is provided, the `text` option will be ignored.'
'If `text` is set, this is not required. HTML to use within each action item. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'visuallyHiddenText',
Expand Down Expand Up @@ -131,14 +131,14 @@ export const params = [
type: 'string',
required: false,
description:
'Text to use within the each title. If `html` is provided, the `text` option will be ignored.'
'Text to use within each title. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'html',
type: 'string',
required: false,
description:
'Text to use within the each title. If `html` is provided, the `text` option will be ignored.'
'Text to use within each title. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'headingLevel',
Expand Down Expand Up @@ -185,7 +185,7 @@ export const params = [
type: 'string',
required: true,
description:
'If `text` is set, this is not required. HTML to use within the each action item. If `html` is provided, the `text` option will be ignored.'
'If `text` is set, this is not required. HTML to use within each action item. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'visuallyHiddenText',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const params = [
type: 'string',
required: true,
description:
'If `text` is set, this is not required. HTML to use within the each tab panel. If `html` is provided, the `text` option will be ignored.'
'If `text` is set, this is not required. HTML to use within each tab panel. If `html` is provided, the `text` option will be ignored.'
},
{
name: 'attributes',
Expand Down

0 comments on commit 24d52cd

Please sign in to comment.