fix(instant): fix tabIndex attribute error

This commit is contained in:
Brandon Millman
2018-11-14 14:02:34 -08:00
parent daf5719f08
commit 504f4d9eb9
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ export class ERC20TokenSelector extends React.Component<ERC20TokenSelectorProps>
width="100%"
value={this.state.searchQuery}
onChange={this._handleSearchInputChange}
tabindex={-1}
tabIndex={-1}
/>
<Container overflow="scroll" height="calc(100% - 90px)" marginTop="10px">
{_.map(tokens, token => {

View File

@@ -3,7 +3,7 @@ import * as React from 'react';
import { ColorOption, styled } from '../../style/theme';
export interface InputProps {
tabindex?: number;
tabIndex?: number;
className?: string;
value?: string;
width?: string;