commit
25d4d09c10
4 changed files with 5 additions and 4 deletions
|
@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
### Changed
|
### Changed
|
||||||
* Make tooltip smarter ([#1979](https://github.com/lbryio/lbry-desktop/pull/1979))
|
* Make tooltip smarter ([#1979](https://github.com/lbryio/lbry-desktop/pull/1979))
|
||||||
* Change channel pages to have 48 items instead of 10 ([#2002](https://github.com/lbryio/lbry-desktop/pull/2002))
|
* Change channel pages to have 48 items instead of 10 ([#2002](https://github.com/lbryio/lbry-desktop/pull/2002))
|
||||||
|
* Update to https ([#2016](https://github.com/lbryio/lbry-desktop/pull/2016))
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Invite table cutoff with large number of invites ([#1985](https://github.com/lbryio/lbry-desktop/pull/1985))
|
* Invite table cutoff with large number of invites ([#1985](https://github.com/lbryio/lbry-desktop/pull/1985))
|
||||||
|
|
|
@ -89,7 +89,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
|
||||||
type="text"
|
type="text"
|
||||||
name="content_thumbnail"
|
name="content_thumbnail"
|
||||||
label="URL"
|
label="URL"
|
||||||
placeholder="http://spee.ch/mylogo"
|
placeholder="https://spee.ch/mylogo"
|
||||||
value={thumbnail}
|
value={thumbnail}
|
||||||
disabled={formDisabled}
|
disabled={formDisabled}
|
||||||
onChange={this.handleThumbnailChange}
|
onChange={this.handleThumbnailChange}
|
||||||
|
|
|
@ -31,8 +31,8 @@ class SocialShare extends React.PureComponent<Props> {
|
||||||
const { speechShareable, onDone } = this.props;
|
const { speechShareable, onDone } = this.props;
|
||||||
const channelClaimId =
|
const channelClaimId =
|
||||||
value && value.publisherSignature && value.publisherSignature.certificateId;
|
value && value.publisherSignature && value.publisherSignature.certificateId;
|
||||||
const speechPrefix = 'http://spee.ch/';
|
const speechPrefix = 'https://spee.ch/';
|
||||||
const lbryPrefix = 'http://open.lbry.io/';
|
const lbryPrefix = 'https://open.lbry.io/';
|
||||||
|
|
||||||
const speechURL =
|
const speechURL =
|
||||||
channelName && channelClaimId
|
channelName && channelClaimId
|
||||||
|
|
|
@ -19,7 +19,7 @@ export default (props: Props) => {
|
||||||
icon={icons.GLOBE}
|
icon={icons.GLOBE}
|
||||||
button="alt"
|
button="alt"
|
||||||
label={__('Share')}
|
label={__('Share')}
|
||||||
href={`http://spee.ch/${speechURL}`}
|
href={`https://spee.ch/${speechURL}`}
|
||||||
/>
|
/>
|
||||||
) : null;
|
) : null;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue