diff --git a/package.json b/package.json index bc10ef117..211f98dc9 100644 --- a/package.json +++ b/package.json @@ -135,7 +135,7 @@ "imagesloaded": "^4.1.4", "json-loader": "^0.5.4", "lbry-format": "https://github.com/lbryio/lbry-format.git", - "lbry-redux": "lbryio/lbry-redux#d148806bbdc74fb194c67942e3a401a0724a2738", + "lbry-redux": "lbryio/lbry-redux#e9d03635883fbe87f1835fca0bf28b402cca6696", "lbryinc": "lbryio/lbryinc#72eee35f5181940eb4a468a27ddb2a2a4e362fb0", "lint-staged": "^7.0.2", "localforage": "^1.7.1", diff --git a/static/app-strings.json b/static/app-strings.json index b06566896..a3cc41820 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1239,5 +1239,8 @@ "Create a New Channel": "Create a New Channel", "Thumbnail source": "Thumbnail source", "Cover source": "Cover source", - "Your changes will be live in a few minutes": "Your changes will be live in a few minutes" -} + "Your changes will be live in a few minutes": "Your changes will be live in a few minutes", + "Submitting": "Submitting", + "Thumbnail Recommended ratio is 1:1": "Thumbnail Recommended ratio is 1:1", + "Cover Recommended ratio is 6.25:1": "Cover Recommended ratio is 6.25:1" +} \ No newline at end of file diff --git a/ui/component/channelEdit/index.js b/ui/component/channelEdit/index.js index eaebfb91f..224072731 100644 --- a/ui/component/channelEdit/index.js +++ b/ui/component/channelEdit/index.js @@ -9,6 +9,7 @@ import { makeSelectAmountForUri, makeSelectClaimForUri, selectUpdateChannelError, + selectUpdatingChannel, } from 'lbry-redux'; import ChannelPage from './view'; @@ -26,6 +27,7 @@ const select = (state, props) => ({ amount: makeSelectAmountForUri(props.uri)(state), claim: makeSelectClaimForUri(props.uri)(state), updateError: selectUpdateChannelError(state), + updatingChannel: selectUpdatingChannel(state), }); const perform = dispatch => ({ diff --git a/ui/component/channelEdit/view.jsx b/ui/component/channelEdit/view.jsx index 784d039ef..43b0b7ee0 100644 --- a/ui/component/channelEdit/view.jsx +++ b/ui/component/channelEdit/view.jsx @@ -27,6 +27,7 @@ type Props = { updateCover: string => void, doneEditing: () => void, updateError: string, + updatingChannel: boolean, }; function ChannelForm(props: Props) { @@ -47,6 +48,7 @@ function ChannelForm(props: Props) { updateThumb, updateCover, updateError, + updatingChannel, } = props; const { claim_id: claimId } = claim; @@ -204,7 +206,11 @@ function ChannelForm(props: Props) { }} />