Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #11771 from brave/ca--11460
Browse files Browse the repository at this point in the history
fallback to placeholder when currency address is fetching
  • Loading branch information
bsclifton committed Nov 3, 2017
1 parent 13e6e16 commit 134f8ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/extensions/brave/locales/en-US/preferences.properties
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ createWallet=create wallet
createWalletStatus=Click the Create Wallet button to get started.
creatingWallet=creating…
creatingWalletStatus=Creating wallet…
loadingWalletAddress.placeholder=Loading wallet address…
dashboardSettingsTitle=Dashboard
dashboardShowImages=Show images
dashlane=Dashlane® (requires application)
Expand Down
2 changes: 1 addition & 1 deletion app/renderer/components/common/textbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ class GroupedFormTextbox extends ImmutableComponent {
return (
<div className={css(styles.groupedFormTextBox)}>
<input
data-l10n-id={this.props.l10nId}
ref={this.props.inputRef}
type={this.props.type}
readOnly={this.props.readOnly}
placeholder={this.props.placeholder}
defaultValue={this.props.value}
className={css(
styles.groupedFormTextBox__firstGroupedItem,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class AddFundsWizardAddress extends React.Component {
<main className={css(styles.wizardAddress__inputBox)}>
<div>
<GroupedFormTextbox readOnly
l10nId='loadingWalletAddress'
type='text'
inputRef={(node) => { this.addressInputNode = node }}
value={this.props.address}
Expand Down

0 comments on commit 134f8ee

Please sign in to comment.