Changeset View
Changeset View
Standalone View
Standalone View
web/cashtab/src/components/Send/Send.js
| Show First 20 Lines • Show All 788 Lines • ▼ Show 20 Lines | return ( | ||||
| {selectedCurrency} | {selectedCurrency} | ||||
| </LocaleFormattedValue> | </LocaleFormattedValue> | ||||
| <ConvertAmount> | <ConvertAmount> | ||||
| {fiatPriceString !== '' && '='}{' '} | {fiatPriceString !== '' && '='}{' '} | ||||
| {fiatPriceString} | {fiatPriceString} | ||||
| </ConvertAmount> | </ConvertAmount> | ||||
| </AmountPreviewCtn> | </AmountPreviewCtn> | ||||
| )} | )} | ||||
| {queryStringText && ( | |||||
| <Alert | |||||
| message={`You are sending a transaction to an address including query parameters "${queryStringText}." Only the "amount" parameter, in units of ${currency.ticker} satoshis, is currently supported.`} | |||||
| type="warning" | |||||
| /> | |||||
| )} | |||||
| <div | <div | ||||
| style={{ | style={{ | ||||
| paddingTop: '12px', | paddingTop: '12px', | ||||
| }} | }} | ||||
| > | > | ||||
| {!balances.totalBalance || | {!balances.totalBalance || | ||||
| apiError || | apiError || | ||||
| sendBchAmountError || | sendBchAmountError || | ||||
| ▲ Show 20 Lines • Show All 141 Lines • ▼ Show 20 Lines | return ( | ||||
| ? e.preventDefault() | ? e.preventDefault() | ||||
| : '' | : '' | ||||
| } | } | ||||
| /> | /> | ||||
| </AntdFormWrapper> | </AntdFormWrapper> | ||||
| </Panel> | </Panel> | ||||
| </AdvancedCollapse> | </AdvancedCollapse> | ||||
| </div> | </div> | ||||
| {queryStringText && ( | |||||
| <Alert | |||||
| message={`You are sending a transaction to an address including query parameters "${queryStringText}." Only the "amount" parameter, in units of ${currency.ticker} satoshis, is currently supported.`} | |||||
| type="warning" | |||||
| /> | |||||
| )} | |||||
| {apiError && <ApiError />} | {apiError && <ApiError />} | ||||
| </Form> | </Form> | ||||
| </Col> | </Col> | ||||
| </Row> | </Row> | ||||
| <Modal | <Modal | ||||
| title={`Please review and confirm your message to be signed using this wallet.`} | title={`Please review and confirm your message to be signed using this wallet.`} | ||||
| visible={showConfirmMsgToSign} | visible={showConfirmMsgToSign} | ||||
| ▲ Show 20 Lines • Show All 108 Lines • Show Last 20 Lines | |||||