diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-10-27 07:24:16 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-10-27 07:24:16 +0800 |
commit | 0e55f76db860962e4ce06866cbfd3e058c0c2984 (patch) | |
tree | 5e60891addfead5fc3f7a310352bc0b5b2062a24 /packages/instant/src/components/erc20_asset_amount_input.tsx | |
parent | 1880c34ce066a8e33047690ef9fb90393100abd9 (diff) | |
download | dexon-sol-tools-0e55f76db860962e4ce06866cbfd3e058c0c2984.tar.gz dexon-sol-tools-0e55f76db860962e4ce06866cbfd3e058c0c2984.tar.zst dexon-sol-tools-0e55f76db860962e4ce06866cbfd3e058c0c2984.zip |
fix(instant): refactor some props to use isDisabled instead of disabled
Diffstat (limited to 'packages/instant/src/components/erc20_asset_amount_input.tsx')
-rw-r--r-- | packages/instant/src/components/erc20_asset_amount_input.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/instant/src/components/erc20_asset_amount_input.tsx b/packages/instant/src/components/erc20_asset_amount_input.tsx index 9b32827e7..5abb34c2f 100644 --- a/packages/instant/src/components/erc20_asset_amount_input.tsx +++ b/packages/instant/src/components/erc20_asset_amount_input.tsx @@ -17,7 +17,7 @@ export interface ERC20AssetAmountInputProps { onChange: (value?: BigNumberInput, asset?: ERC20Asset) => void; startingFontSizePx: number; fontColor?: ColorOption; - disabled: boolean; + isDisabled: boolean; } export interface ERC20AssetAmountInputState { @@ -27,7 +27,7 @@ export interface ERC20AssetAmountInputState { export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInputProps, ERC20AssetAmountInputState> { public static defaultProps = { onChange: util.boundNoop, - disabled: false, + isDisabled: false, }; constructor(props: ERC20AssetAmountInputProps) { super(props); @@ -37,7 +37,7 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput } public render(): React.ReactNode { const { asset, onChange, ...rest } = this.props; - const amountBorderBottom = this.props.disabled ? '' : `1px solid ${transparentWhite}`; + const amountBorderBottom = this.props.isDisabled ? '' : `1px solid ${transparentWhite}`; return ( <Container whiteSpace="nowrap"> <Container borderBottom={amountBorderBottom} display="inline-block"> |