aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-08-21 11:16:54 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-08-23 01:53:20 +0800
commit7294aede4fc33e950f84147f1b7402675f53398d (patch)
treefeef8ed1dfa9431f6d5ee002c7b3589176392953 /ui/app/components/send/send-content
parentbabd59a2dc64e15ef2a415e349ef12d5b995e2e7 (diff)
downloadtangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar.gz
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar.bz2
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar.lz
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar.xz
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.tar.zst
tangerine-wallet-browser-7294aede4fc33e950f84147f1b7402675f53398d.zip
Add new variant for SenderToRecipient component
Diffstat (limited to 'ui/app/components/send/send-content')
-rw-r--r--ui/app/components/send/send-content/send-to-row/send-to-row.component.js2
-rw-r--r--ui/app/components/send/send-content/send-to-row/tests/send-to-row-component.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send/send-content/send-to-row/send-to-row.component.js b/ui/app/components/send/send-content/send-to-row/send-to-row.component.js
index 1163dcffc..434db81e5 100644
--- a/ui/app/components/send/send-content/send-to-row/send-to-row.component.js
+++ b/ui/app/components/send/send-content/send-to-row/send-to-row.component.js
@@ -48,7 +48,7 @@ export default class SendToRow extends Component {
return (
<SendRowWrapper
errorType={'to'}
- label={`${this.context.t('to')}`}
+ label={`${this.context.t('to')}: `}
showError={inError}
>
<EnsInput
diff --git a/ui/app/components/send/send-content/send-to-row/tests/send-to-row-component.test.js b/ui/app/components/send/send-content/send-to-row/tests/send-to-row-component.test.js
index 781371004..591229deb 100644
--- a/ui/app/components/send/send-content/send-to-row/tests/send-to-row-component.test.js
+++ b/ui/app/components/send/send-content/send-to-row/tests/send-to-row-component.test.js
@@ -102,7 +102,7 @@ describe('SendToRow Component', function () {
assert.equal(errorType, 'to')
- assert.equal(label, 'to_t')
+ assert.equal(label, 'to_t: ')
assert.equal(showError, false)
})