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

fallback to placeholder when currency address is fetching #11771

Merged
merged 1 commit into from
Nov 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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