minor changes

This commit is contained in:
jessop 2019-07-22 11:47:48 -04:00
parent 081e23d7fd
commit 876715173f
3 changed files with 5 additions and 6 deletions

View file

@ -4,12 +4,11 @@ import { parseURI } from 'lbry-redux';
import { Form, FormField } from 'component/common/form';
import Button from 'component/button';
import SelectAsset from '../selectAsset/view';
import TagSelect from '../tagsSelect/view';
import SelectAsset from 'component/selectAsset';
import TagSelect from 'component/tagsSelect';
type Props = {
uri: string,
title: ?string,
amount: string,
cover: ?string,
@ -185,7 +184,7 @@ function ChannelForm(props: Props) {
<TagSelect
title={false}
suggestMature
help={__('The better your tags are, the easier it will be for people to discover your content.')}
help={__('The better your tags are, the easier it will be for people to discover your channel.')}
empty={__('No tags added')}
onSelect={newTag => {
if (!params.tags.map(savedTag => savedTag.name).includes(newTag.name)) {

View file

@ -12,7 +12,6 @@ type Props = {
followedTags: Array<Tag>,
doToggleTagFollow?: string => void,
suggestMature: boolean,
// Ovverides
// The default component is for following tags
title?: string | boolean,

View file

@ -574,5 +574,6 @@
"You can generate a new address at any time, and any previous addresses will continue to work.": "You can generate a new address at any time, and any previous addresses will continue to work.",
"Confirm Claim Revoke": "Confirm Claim Revoke",
"Are you sure you want to remove this support?": "Are you sure you want to remove this support?",
"These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.": "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance."
"These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.": "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.",
"The better your tags are, the easier it will be for people to discover your channel.": "The better your tags are, the easier it will be for people to discover your channel."
}