diff --git a/CHANGELOG.md b/CHANGELOG.md index 75a1301b6..f662a36e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). ### Added * Wallet Encryption/Decryption user flows ([#1785](https://github.com/lbryio/lbry-desktop/pull/1785)) +* Add FAQ to Publishing Area ([#1833](https://github.com/lbryio/lbry-desktop/pull/1833)) ### Changed diff --git a/src/renderer/component/publishForm/view.jsx b/src/renderer/component/publishForm/view.jsx index c291ccaee..dec69e685 100644 --- a/src/renderer/component/publishForm/view.jsx +++ b/src/renderer/component/publishForm/view.jsx @@ -53,7 +53,7 @@ type Props = { clearPublish: () => void, resolveUri: string => void, scrollToTop: () => void, - prepareEdit: ({}) => void, + prepareEdit: ({ }) => void, resetThumbnailStatus: () => void, }; @@ -345,6 +345,13 @@ class PublishForm extends React.PureComponent {
{__('Content')}
{isStillEditing ? __('Editing a claim') : __('What are you publishing?')} + {' '}{__( + 'Read our' + )}{' '} +
{(filePath || !!editingURI) && (
@@ -402,12 +409,12 @@ class PublishForm extends React.PureComponent { {uploadThumbnailStatus === THUMBNAIL_STATUSES.API_DOWN ? ( __('Enter a URL for your thumbnail.') ) : ( - - {__('Upload your thumbnail (.png/.jpg/.jpeg/.gif) to')}{' '} -
{ !channel || channel === CHANNEL_ANONYMOUS || channel === CHANNEL_NEW ? '' : `${channel}/` - }`} + }`} type="text" name="content_name" placeholder="myname"