aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/qr-code.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-06 21:24:27 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-08 01:26:21 +0800
commitc4eb2fb3ea1c1f0753a6bed736503528f4e539cf (patch)
treebb74699a5a73be3f3022329b17e4ba0c054f2c86 /ui/app/components/qr-code.js
parent1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe (diff)
downloadtangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.tar.gz
tangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.tar.zst
tangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.zip
Account-detail address is a readonly input.
Diffstat (limited to 'ui/app/components/qr-code.js')
-rw-r--r--ui/app/components/qr-code.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/app/components/qr-code.js b/ui/app/components/qr-code.js
index 8d6b43b6c..8e4d01c00 100644
--- a/ui/app/components/qr-code.js
+++ b/ui/app/components/qr-code.js
@@ -47,11 +47,13 @@ QrCodeView.prototype.render = function () {
},
}),
h('.div.ellip-address-wrapper', [
- h('span.qr-ellip-address', {
+ h('input.qr-ellip-address', {
style: {
width: '247px',
},
- }, Qr.data),
+ value: Qr.data,
+ readonly: 'readonly',
+ }),
// h(CopyButton, {
// value: Qr.data,
// }),