diff --git a/react/containers/ChannelCreateForm/view.jsx b/react/containers/ChannelCreateForm/view.jsx index 92fad44e..967c6443 100644 --- a/react/containers/ChannelCreateForm/view.jsx +++ b/react/containers/ChannelCreateForm/view.jsx @@ -129,10 +129,11 @@ class ChannelCreateForm extends React.Component {
-
+
@ - {'\u2713'} + { (this.state.channel && !this.state.error) && {'\u2713'} } + { this.state.error && {'\u2716'} }
diff --git a/react/containers/PublishForm/view.jsx b/react/containers/PublishForm/view.jsx index 3b2c3880..fee191ef 100644 --- a/react/containers/PublishForm/view.jsx +++ b/react/containers/PublishForm/view.jsx @@ -143,11 +143,6 @@ class PublishForm extends React.Component {
- { this.props.publishSubmitError && ( -
-

{this.props.publishSubmitError}

-
- )}
@@ -155,7 +150,7 @@ class PublishForm extends React.Component {
-

By clicking 'Upload', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. Read more.

+

By clicking 'Publish', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. Read more.

diff --git a/react/containers/PublishMetadataInputs/view.jsx b/react/containers/PublishMetadataInputs/view.jsx index 3fa9b149..616d608b 100644 --- a/react/containers/PublishMetadataInputs/view.jsx +++ b/react/containers/PublishMetadataInputs/view.jsx @@ -5,7 +5,7 @@ class PublishMetadataInputs extends React.Component { constructor (props) { super(props); this.state = { - showInputs : false, + showInputs: false, }; this.toggleShowInputs = this.toggleShowInputs.bind(this); this.handleDescriptionInput = this.handleDescriptionInput.bind(this); diff --git a/react/containers/PublishUrlInput/view.jsx b/react/containers/PublishUrlInput/view.jsx index b01742e2..f9730ce3 100644 --- a/react/containers/PublishUrlInput/view.jsx +++ b/react/containers/PublishUrlInput/view.jsx @@ -72,6 +72,7 @@ class PublishUrlInput extends React.Component { { (this.props.claim && !this.props.urlError) && {'\u2713'} } + { this.props.urlError && {'\u2716'} } );