|
@ -52,6 +52,7 @@ export const SettingsRender = function() { |
|
|
} |
|
|
} |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|
<div |
|
|
<div |
|
|
|
|
|
className="hide" |
|
|
id="DumpWallet" |
|
|
id="DumpWallet" |
|
|
onClick={ () => this.openTab('DumpWallet', 2) } |
|
|
onClick={ () => this.openTab('DumpWallet', 2) } |
|
|
className={ 'panel' + (this.state.nativeOnly ? ' hide' : '') }> |
|
|
className={ 'panel' + (this.state.nativeOnly ? ' hide' : '') }> |
|
@ -69,6 +70,7 @@ export const SettingsRender = function() { |
|
|
} |
|
|
} |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|
<div |
|
|
<div |
|
|
|
|
|
className="hide" |
|
|
id="FiatCurrencySettings" |
|
|
id="FiatCurrencySettings" |
|
|
onClick={ () => this.openTab('FiatCurrencySettings', 3) } |
|
|
onClick={ () => this.openTab('FiatCurrencySettings', 3) } |
|
|
className={ 'panel' + (this.state.nativeOnly ? ' hide' : '') }> |
|
|
className={ 'panel' + (this.state.nativeOnly ? ' hide' : '') }> |
|
@ -80,7 +82,8 @@ export const SettingsRender = function() { |
|
|
<div |
|
|
<div |
|
|
className={ 'panel-collapse collapse' + (this.state.activeTab === 3 ? ' in' : '') } |
|
|
className={ 'panel-collapse collapse' + (this.state.activeTab === 3 ? ' in' : '') } |
|
|
style={{ height: this.state.activeTab === 3 ? `auto` : '0' }}> |
|
|
style={{ height: this.state.activeTab === 3 ? `auto` : '0' }}> |
|
|
{ this.renderFiatCurrency() } </div> |
|
|
{ this.renderFiatCurrency() } |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
} |
|
|
} |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|
{ !this.props.disableWalletSpecificUI && |
|
|