Browse Source

FIX: buy button for lnd wallet

localNotifications
Overtorment 6 years ago
parent
commit
48b6c4d349
  1. 2
      fastlane/metadata/review_information/notes.txt
  2. 5
      screen/wallets/details.js
  3. 4
      screen/wallets/transactions.js

2
fastlane/metadata/review_information/notes.txt

@ -1 +1 @@
test

5
screen/wallets/details.js

@ -12,6 +12,7 @@ import {
BlueNavigationStyle,
} from '../../BlueComponents';
import PropTypes from 'prop-types';
import { LightningCustodianWallet } from '../../class/lightning-custodian-wallet'
let EV = require('../../events');
/** @type {AppStorage} */
let BlueApp = require('../../BlueApp');
@ -171,7 +172,7 @@ export default class WalletDetails extends Component {
<BlueSpacing20 />
<BlueButton
{(this.state.wallet.type !== (new LightningCustodianWallet()).type) && <BlueButton
icon={{
name: 'shopping-cart',
type: 'font-awesome',
@ -184,7 +185,7 @@ export default class WalletDetails extends Component {
})
}
title={loc.wallets.details.buy_bitcoin}
/>
/>}
</View>
);
}

4
screen/wallets/transactions.js

@ -366,7 +366,7 @@ export default class WalletTransactions extends Component {
<Text />
<Text />
<Text
{!this.isLightning() && <Text
style={{
fontSize: 18,
color: '#9aa0aa',
@ -381,7 +381,7 @@ export default class WalletTransactions extends Component {
}
>
{loc.wallets.list.tap_here_to_buy}
</Text>
</Text>}
</View>
}
refreshControl={<RefreshControl onRefresh={() => this.refreshTransactions()} refreshing={this.state.isTransactionsLoading} />}

Loading…
Cancel
Save