mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-01 01:35:11 +00:00
In copyright notice pre-fill, use "Copyright" instead of (C) symbol
This commit is contained in:
parent
5476c29322
commit
452f808e32
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ var PublishPage = React.createClass({
|
||||||
|
|
||||||
if (licenseType == 'copyright') {
|
if (licenseType == 'copyright') {
|
||||||
var author = this.refs.meta_author.getValue();
|
var author = this.refs.meta_author.getValue();
|
||||||
newState.copyrightNotice = '\u{00a9} ' + (new Date().getFullYear()) + (author ? ' ' + author : '');
|
newState.copyrightNotice = 'Copyright ' + (new Date().getFullYear()) + (author ? ' ' + author : '');
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState(newState);
|
this.setState(newState);
|
||||||
|
|
Loading…
Add table
Reference in a new issue