fix publish prompt

This commit is contained in:
Jeremy Kauffman 2017-05-23 21:01:38 -04:00
parent e92c72ae16
commit 8ac2bcd638
2 changed files with 2 additions and 1 deletions

View file

@ -21,6 +21,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Fixed
* Publisher indicator on show pages and file cards/tiles will now always show the proper channel name.
* Performance improvements related to avoiding duplicate fetches.
* Fix incorrect prompt on empty published page
### Deprecated
*

View file

@ -51,7 +51,7 @@ class FileListPublished extends React.Component {
if (isPending) {
content = <BusyMessage message="Loading" />
} else {
content = <span>You haven't downloaded anything from LBRY yet. Go <Link onClick={() => navigate('/discover')} label="search for your first download" />!</span>
content = <span>It looks like you haven't published anything to LBRY yet. Go <Link onClick={() => navigate('/publish')} label="share your beautiful cats with the world" />!</span>
}
}