Browse Source

"No fee" thing

master
meriadec 7 years ago
parent
commit
4b53241805
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 4
      src/components/modals/OperationDetails.js
  2. 1
      static/i18n/en/app.yml

4
src/components/modals/OperationDetails.js

@ -194,7 +194,9 @@ const OperationDetails = connect(mapStateToProps)((props: Props) => {
<FormattedVal unit={unit} showCode val={fee} color="dark" /> <FormattedVal unit={unit} showCode val={fee} color="dark" />
</OpDetailsData> </OpDetailsData>
</Fragment> </Fragment>
) : null} ) : (
<OpDetailsData>{t('app:operationDetails.noFees')}</OpDetailsData>
)}
</Box> </Box>
<Box flex={1}> <Box flex={1}>
<OpDetailsTitle>{t('app:operationDetails.status')}</OpDetailsTitle> <OpDetailsTitle>{t('app:operationDetails.status')}</OpDetailsTitle>

1
static/i18n/en/app.yml

@ -176,6 +176,7 @@ operationDetails:
confirmed: Confirmed confirmed: Confirmed
notConfirmed: Not confirmed notConfirmed: Not confirmed
fees: Fees fees: Fees
noFees: No fee
from: From from: From
to: To to: To
identifier: Transaction ID identifier: Transaction ID

Loading…
Cancel
Save