From d43426bade0a024da2b81c3b41234ff4495191d2 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Mon, 25 Feb 2019 17:46:25 +0100 Subject: [PATCH 1/3] renamed read more to learn more --- src/components/Tooltip/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Tooltip/index.js b/src/components/Tooltip/index.js index 17cb2344..920073e3 100644 --- a/src/components/Tooltip/index.js +++ b/src/components/Tooltip/index.js @@ -43,7 +43,7 @@ const Tooltip = ({ {content} {readMoreLink && ( - Read more + Learn more ) } From 8db40190869bbbf422abe17d3a839787ceba59b4 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Mon, 25 Feb 2019 17:47:28 +0100 Subject: [PATCH 2/3] update destination tag explanation and learn more link --- .../Account/Send/ripple/components/AdvancedForm/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js b/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js index 883533d7..7257b3be 100644 --- a/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js +++ b/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js @@ -165,11 +165,11 @@ const AdvancedForm = (props: Props) => { - An arbitrary unsigned 32-bit integer that identifies a reason for payment or a non-Ripple account. + Destination tag is an arbitrary number which serves as a unique identifier of your transaction. Some services may require this to process your transaction. )} maxWidth={200} - readMoreLink="https://developers.ripple.com/rippleapi-reference.html#payment" + readMoreLink="https://wiki.trezor.io/Ripple_(XRP)" placement="top" > Date: Mon, 25 Feb 2019 18:07:24 +0100 Subject: [PATCH 3/3] update text for xrp minimum acc reserve notification --- src/components/Notification/index.js | 2 +- .../notifications/Context/components/Static/index.js | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/Notification/index.js b/src/components/Notification/index.js index 721a7463..8ced6cce 100644 --- a/src/components/Notification/index.js +++ b/src/components/Notification/index.js @@ -17,7 +17,7 @@ type Props = { cancelable?: boolean; title: string; className?: string; - message?: ?string; + message?: ?React.Node; actions?: Array; isActionInProgress?: boolean; close?: typeof NotificationActions.close, diff --git a/src/components/notifications/Context/components/Static/index.js b/src/components/notifications/Context/components/Static/index.js index 912569cf..a6867a0e 100644 --- a/src/components/notifications/Context/components/Static/index.js +++ b/src/components/notifications/Context/components/Static/index.js @@ -3,7 +3,7 @@ import * as React from 'react'; import Notification from 'components/Notification'; import Bignumber from 'bignumber.js'; - +import Link from 'components/Link'; import type { Props } from '../../index'; export default (props: Props) => { @@ -25,7 +25,12 @@ export default (props: Props) => { key="xrp-warning" type="warning" title="Minimum account reserve required" - message={`The Base Reserve is a minimum amount of XRP that is required for every address in the ledger. Currently, this is ${bigReserve.toString()} XRP.`} + message={( + <> + {`Ripple addresses require a minimum balance of ${bigReserve.toString()} XRP to activate and maintain the account. `} + Learn more + + )} />, ); }