Skip to content

Commit

Permalink
docs(layouts): fix incorrectly cased tabIndex in Bootstrap layout (#3668
Browse files Browse the repository at this point in the history
)

The tabIndex prop was passed as tabindex (non camel-cased).

Simple and quick change :)
  • Loading branch information
AaronCTech authored and layershifter committed Jun 17, 2019
1 parent 44ce3d0 commit 00659bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/src/layouts/BootstrapMigrationLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ const BootstrapMigrationLayout = () => (
<Grid.Row>
<Grid.Column>
<Header as='h1'>Buttons</Header>
<Button as='a' tabindex='0'>
<Button as='a' tabIndex='0'>
Default
</Button>
<Button as='a' primary tabindex='0'>
<Button as='a' primary tabIndex='0'>
Primary
</Button>
<Button as='a' basic tabindex='0'>
<Button as='a' basic tabIndex='0'>
Basic
</Button>
<Button as='a' positive tabindex='0'>
<Button as='a' positive tabIndex='0'>
Success
</Button>
<Button as='a' negative tabindex='0'>
<Button as='a' negative tabIndex='0'>
Error
</Button>
</Grid.Column>
Expand Down

0 comments on commit 00659bd

Please sign in to comment.