diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-01 03:16:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 03:16:55 +0800 |
commit | 28c6347cddcd90161f21a1fc145736e63a9f1a13 (patch) | |
tree | ddb0b58d20137313984303336e0514207b26b2b6 | |
parent | 4b69531c3c57ad21d06742a4d1d90f696bebb4e7 (diff) | |
parent | 2b9af0734b6127349ed4f1ed535dee858633776b (diff) | |
download | tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar.gz tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar.bz2 tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar.lz tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar.xz tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.tar.zst tangerine-wallet-browser-28c6347cddcd90161f21a1fc145736e63a9f1a13.zip |
Merge pull request #3340 from danjm/i3338-contract-published-terminology
[NewUI] Replace 'Contract Published' label with 'Contract Deployment'
-rw-r--r-- | old-ui/app/components/transaction-list-item.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item.js | 2 | ||||
-rw-r--r-- | ui/app/components/tx-list-item.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/old-ui/app/components/transaction-list-item.js b/old-ui/app/components/transaction-list-item.js index 76a456d3f..95670bd54 100644 --- a/old-ui/app/components/transaction-list-item.js +++ b/old-ui/app/components/transaction-list-item.js @@ -123,7 +123,7 @@ function recipientField (txParams, transaction, isTx, isMsg) { } else if (txParams.to) { message = addressSummary(txParams.to) } else { - message = 'Contract Published' + message = 'Contract Deployment' } return h('div', { diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 4e3d2cb93..a45cd441a 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -180,7 +180,7 @@ function recipientField (txParams, transaction, isTx, isMsg) { } else if (txParams.to) { message = addressSummary(txParams.to) } else { - message = 'Contract Published' + message = 'Contract Deployment' } return h('div', { diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js index 7ccc5c315..1a13070c8 100644 --- a/ui/app/components/tx-list-item.js +++ b/ui/app/components/tx-list-item.js @@ -63,7 +63,7 @@ TxListItem.prototype.getAddressText = function () { default: return address ? `${address.slice(0, 10)}...${address.slice(-4)}` - : 'Contract Published' + : 'Contract Deployment' } } |