aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/account-dropdowns.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-04 08:08:19 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-04 08:08:19 +0800
commitecb09fcc0aa801f553cd83659c06c429b5cfbf33 (patch)
tree0aa4c125972449539211805cbb91af53484f7464 /ui/app/components/account-dropdowns.js
parent67f10d660f1a7f5875253eb0de097e1fab9ad912 (diff)
downloadtangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar.gz
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar.bz2
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar.lz
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar.xz
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.tar.zst
tangerine-wallet-browser-ecb09fcc0aa801f553cd83659c06c429b5cfbf33.zip
Disable account selection dropdown from account details
Diffstat (limited to 'ui/app/components/account-dropdowns.js')
-rw-r--r--ui/app/components/account-dropdowns.js20
1 files changed, 15 insertions, 5 deletions
diff --git a/ui/app/components/account-dropdowns.js b/ui/app/components/account-dropdowns.js
index 79e6cff59..8d8cb211e 100644
--- a/ui/app/components/account-dropdowns.js
+++ b/ui/app/components/account-dropdowns.js
@@ -183,7 +183,7 @@ class AccountDropdowns extends Component {
}
render () {
- const { style } = this.props
+ const { style, enableAccountsSelector, enableAccountOptions } = this.props
const { optionsMenuActive, accountSelectorActive } = this.state
return h(
@@ -192,10 +192,12 @@ class AccountDropdowns extends Component {
style: style,
},
[
- h(
+ enableAccountsSelector && h(
'i.fa.fa-angle-down',
{
- style: {},
+ style: {
+ fontSize: '1.8em',
+ },
onClick: (event) => {
event.stopPropagation()
this.setState({
@@ -206,10 +208,13 @@ class AccountDropdowns extends Component {
},
this.renderAccountSelector(),
),
- h(
+ enableAccountOptions && h(
'i.fa.fa-ellipsis-h',
{
- style: { 'marginLeft': '10px'},
+ style: {
+ marginRight: '0.5em',
+ fontSize: '1.8em',
+ },
onClick: (event) => {
event.stopPropagation()
this.setState({
@@ -225,6 +230,11 @@ class AccountDropdowns extends Component {
}
}
+AccountDropdowns.defaultProps = {
+ enableAccountsSelector: false,
+ enableAccountOptions: false,
+}
+
AccountDropdowns.propTypes = {
identities: PropTypes.objectOf(PropTypes.object),
selected: PropTypes.string,