Quick fix for Issue #198 , not being able to go to SEND/RECEIVE page

This commit fixes the missing _ in one of the i18n translation labels.
fixes #198
This commit is contained in:
Fillerino 2017-06-05 22:35:24 +02:00
parent 1dc1b0ed7a
commit a2ec397ff8

View file

@ -29,7 +29,7 @@ const WalletSend = (props) => {
<FormRow label={__("Recipient Address")} placeholder="bbFxRyXXXXXXXXXXXZD8nE7XTLUxYnddTs" type="text" size="60" onChange={setAddress} value={address} />
</div>
<div className="card__actions card__actions--form-submit">
<Link button="primary" label={_("Send")} onClick={sendToAddress} disabled={!(parseFloat(amount) > 0.0) || !address} />
<Link button="primary" label={__("Send")} onClick={sendToAddress} disabled={!(parseFloat(amount) > 0.0) || !address} />
<input type='submit' className='hidden' />
</div>
</form>