Merge pull request #1687 from lbryio/sean-patch
Fix channel links and license type prefil on edit
This commit is contained in:
commit
22207d2636
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ class UriIndicator extends React.PureComponent<Props> {
|
||||||
|
|
||||||
let channelLink;
|
let channelLink;
|
||||||
if (signatureIsValid) {
|
if (signatureIsValid) {
|
||||||
channelLink = link ? buildURI({ channelName, claimId: channelClaimId }, false) : false;
|
channelLink = link ? buildURI({ channelName, claimId: channelClaimId }) : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const inner = (
|
const inner = (
|
||||||
|
|
|
@ -161,7 +161,7 @@ export const doPrepareEdit = (claim: any, uri: string) => (dispatch: Dispatch) =
|
||||||
description,
|
description,
|
||||||
fee,
|
fee,
|
||||||
language,
|
language,
|
||||||
license,
|
licenseType: license,
|
||||||
licenseUrl,
|
licenseUrl,
|
||||||
nsfw,
|
nsfw,
|
||||||
thumbnail,
|
thumbnail,
|
||||||
|
|
Loading…
Reference in a new issue