diff --git a/i18n/locales/en/common.json b/i18n/locales/en/common.json index 9b31ff5b71..7273aeb606 100644 --- a/i18n/locales/en/common.json +++ b/i18n/locales/en/common.json @@ -201,6 +201,7 @@ "Transaction is being processed and will be confirmed. It may take up to 15 minutes to be secured in the blockchain.": "Transaction is being processed and will be confirmed. It may take up to 15 minutes to be secured in the blockchain.", "Transactions can’t be reversed": "Transactions can’t be reversed", "Try using menu for navigation.": "Try using menu for navigation.", + "Type": "Type", "URL is invalid": "URL is invalid", "Unable to connect to the node": "Unable to connect to the node", "Undo": "Undo", diff --git a/src/components/transactions/transactionDetailView.js b/src/components/transactions/transactionDetailView.js index 98910dd533..7b8816c573 100644 --- a/src/components/transactions/transactionDetailView.js +++ b/src/components/transactions/transactionDetailView.js @@ -8,6 +8,7 @@ import CopyToClipboard from '../copyToClipboard'; import AccountVisual from '../accountVisual'; import styles from './transactions.css'; import { FontIcon } from '../fontIcon'; +import TransactionType from './transactionType'; import LiskAmount from '../liskAmount'; import Amount from './amount'; import routes from './../../constants/routes'; @@ -72,8 +73,16 @@ class TransactionsDetailView extends React.Component {
-
{this.props.t('Amount (LSK)')}
-
+ {this.props.value.type === 0 + ?
{this.props.t('Amount (LSK)')}
+
+
+ :
{this.props.t('Type')}
+
+ +
+
+ }