Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Fix casing of tabIndex prop.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Smith committed Jun 19, 2019
1 parent 7b65b4c commit 8261734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/modal/default-modal-footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const DefaultModalFooter = props => (
primary
medium
theme={{ width: props.useFullWidthButtons ? '100%' : null }}
tabindex={props.commitButton.tabindex}
tabIndex={props.commitButton.tabindex}
onClick={props.commitButton.onClick}
>
{props.commitButton.text}
Expand All @@ -25,7 +25,7 @@ export const DefaultModalFooter = props => (
primaryOutline
medium
theme={{ width: props.useFullWidthButtons ? '100%' : null }}
tabindex={props.cancelButton.tabindex}
tabIndex={props.cancelButton.tabindex}
onClick={props.cancelButton.onClick}
>
{props.cancelButton.text}
Expand Down

0 comments on commit 8261734

Please sign in to comment.