Thibaut Boustany
7 years ago
No known key found for this signature in database
GPG Key ID: 32475B11A2B13EEC
5 changed files with
12 additions and
6 deletions
-
src/components/FeesField/BitcoinKind.js
-
src/components/Onboarding/steps/GenuineCheck.js
-
src/components/ThrowBlock.js
-
src/components/base/AccountsList/AccountRow.js
-
src/components/modals/AddAccounts/index.js
|
|
@ -18,7 +18,7 @@ type Props = { |
|
|
|
account: Account, |
|
|
|
feePerByte: number, |
|
|
|
onChange: number => void, |
|
|
|
t: T |
|
|
|
t: T, |
|
|
|
} |
|
|
|
|
|
|
|
type FeeItem = { |
|
|
@ -124,7 +124,11 @@ class FeesField extends Component< |
|
|
|
value={feePerByte} |
|
|
|
onChange={onChange} |
|
|
|
onChangeFocus={this.onChangeFocus} |
|
|
|
renderRight={<InputRight>{t('app:send.steps.amount.unitPerByte', { unit: satoshi.code })}</InputRight>} |
|
|
|
renderRight={ |
|
|
|
<InputRight> |
|
|
|
{t('app:send.steps.amount.unitPerByte', { unit: satoshi.code })} |
|
|
|
</InputRight> |
|
|
|
} |
|
|
|
/> |
|
|
|
</GenericContainer> |
|
|
|
) |
|
|
|
|
|
@ -151,7 +151,9 @@ class GenuineCheck extends PureComponent<StepProps, State> { |
|
|
|
<CardWrapper isDisabled={!genuine.pinStepPass}> |
|
|
|
<Box justify="center"> |
|
|
|
<Box horizontal> |
|
|
|
<IconOptionRow color={!genuine.pinStepPass ? 'grey' : 'wallet'}>{'2.'}</IconOptionRow> |
|
|
|
<IconOptionRow color={!genuine.pinStepPass ? 'grey' : 'wallet'}> |
|
|
|
{'2.'} |
|
|
|
</IconOptionRow> |
|
|
|
<CardTitle>{t('onboarding:genuineCheck.steps.step2.title')}</CardTitle> |
|
|
|
</Box> |
|
|
|
</Box> |
|
|
|
|
|
@ -19,7 +19,7 @@ import TranslatedError from './TranslatedError' |
|
|
|
|
|
|
|
type Props = { |
|
|
|
children: any, |
|
|
|
t: T |
|
|
|
t: T, |
|
|
|
} |
|
|
|
|
|
|
|
type State = { |
|
|
|
|
|
@ -21,7 +21,7 @@ type Props = { |
|
|
|
isDisabled?: boolean, |
|
|
|
onClick: Account => void, |
|
|
|
onAccountUpdate: Account => void, |
|
|
|
t: T |
|
|
|
t: T, |
|
|
|
} |
|
|
|
|
|
|
|
type State = { |
|
|
|
|
|
@ -211,7 +211,7 @@ class AddAccounts extends PureComponent<Props, State> { |
|
|
|
</ModalContent> |
|
|
|
{!hideFooter && ( |
|
|
|
<ModalFooter horizontal align="center" justify="flex-end" style={{ height: 80 }}> |
|
|
|
{StepFooter ? <StepFooter {...stepProps} /> : <Box/>} |
|
|
|
{StepFooter ? <StepFooter {...stepProps} /> : <Box />} |
|
|
|
</ModalFooter> |
|
|
|
)} |
|
|
|
</ModalBody> |
|
|
|