minor changes
This commit is contained in:
parent
081e23d7fd
commit
876715173f
3 changed files with 5 additions and 6 deletions
|
@ -4,12 +4,11 @@ import { parseURI } from 'lbry-redux';
|
||||||
import { Form, FormField } from 'component/common/form';
|
import { Form, FormField } from 'component/common/form';
|
||||||
import Button from 'component/button';
|
import Button from 'component/button';
|
||||||
|
|
||||||
import SelectAsset from '../selectAsset/view';
|
import SelectAsset from 'component/selectAsset';
|
||||||
import TagSelect from '../tagsSelect/view';
|
import TagSelect from 'component/tagsSelect';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
uri: string,
|
uri: string,
|
||||||
|
|
||||||
title: ?string,
|
title: ?string,
|
||||||
amount: string,
|
amount: string,
|
||||||
cover: ?string,
|
cover: ?string,
|
||||||
|
@ -185,7 +184,7 @@ function ChannelForm(props: Props) {
|
||||||
<TagSelect
|
<TagSelect
|
||||||
title={false}
|
title={false}
|
||||||
suggestMature
|
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')}
|
empty={__('No tags added')}
|
||||||
onSelect={newTag => {
|
onSelect={newTag => {
|
||||||
if (!params.tags.map(savedTag => savedTag.name).includes(newTag.name)) {
|
if (!params.tags.map(savedTag => savedTag.name).includes(newTag.name)) {
|
||||||
|
|
|
@ -12,7 +12,6 @@ type Props = {
|
||||||
followedTags: Array<Tag>,
|
followedTags: Array<Tag>,
|
||||||
doToggleTagFollow?: string => void,
|
doToggleTagFollow?: string => void,
|
||||||
suggestMature: boolean,
|
suggestMature: boolean,
|
||||||
|
|
||||||
// Ovverides
|
// Ovverides
|
||||||
// The default component is for following tags
|
// The default component is for following tags
|
||||||
title?: string | boolean,
|
title?: string | boolean,
|
||||||
|
|
|
@ -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.",
|
"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",
|
"Confirm Claim Revoke": "Confirm Claim Revoke",
|
||||||
"Are you sure you want to remove this support?": "Are you sure you want to remove this support?",
|
"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."
|
||||||
}
|
}
|
Loading…
Reference in a new issue