diff --git a/package.json b/package.json index c85931879..8c93430a3 100644 --- a/package.json +++ b/package.json @@ -124,7 +124,7 @@ "jsmediatags": "^3.8.1", "json-loader": "^0.5.4", "lbry-format": "https://github.com/lbryio/lbry-format.git", - "lbry-redux": "lbryio/lbry-redux#885b4679ca1918076d64af063fda15608a52a5e5", + "lbry-redux": "lbryio/lbry-redux#ea56de4548480eb1a10b752b3cecbad7de2f8914", "lbryinc": "lbryio/lbryinc#a93596c51c8fb0a226cb84df04c26a6bb60a45fb", "lint-staged": "^7.0.2", "localforage": "^1.7.1", diff --git a/src/ui/component/walletSendTip/index.js b/src/ui/component/walletSendTip/index.js index 72beed2bd..855ccc6ed 100644 --- a/src/ui/component/walletSendTip/index.js +++ b/src/ui/component/walletSendTip/index.js @@ -16,7 +16,7 @@ const select = (state, props) => ({ }); const perform = dispatch => ({ - sendSupport: (amount, claimId) => dispatch(doSendTip(amount, claimId)), + sendSupport: (amount, claimId, isSupport) => dispatch(doSendTip(amount, claimId, isSupport)), }); export default connect( diff --git a/src/ui/component/walletSendTip/view.jsx b/src/ui/component/walletSendTip/view.jsx index 31a6429b7..1d91f3397 100644 --- a/src/ui/component/walletSendTip/view.jsx +++ b/src/ui/component/walletSendTip/view.jsx @@ -33,11 +33,11 @@ class WalletSendTip extends React.PureComponent { } handleSendButtonClicked() { - const { claim, sendSupport, sendTipCallback } = this.props; + const { claim, sendSupport, isSupport, sendTipCallback } = this.props; const { claim_id: claimId } = claim; const { tipAmount } = this.state; - sendSupport(tipAmount, claimId); + sendSupport(tipAmount, claimId, isSupport); // ex: close modal if (sendTipCallback) { diff --git a/static/locales/en.json b/static/locales/en.json index e7e1cb150..718d6d979 100644 --- a/static/locales/en.json +++ b/static/locales/en.json @@ -635,5 +635,8 @@ "Publish to": "Publish to", "Help Us Out": "Help Us Out", "Currently, there is no automatic backup. If you lose access to these files, you will lose your credits.": "Currently, there is no automatic backup. If you lose access to these files, you will lose your credits.", - "For more details on backing up and best practices": "For more details on backing up and best practices" + "For more details on backing up and best practices": "For more details on backing up and best practices", + "File Size": "File Size", + "You deposited 1 LBC as a support!": "You deposited 1 LBC as a support!", + "Refreshed!": "Refreshed!" } \ No newline at end of file