Merge branch 'master' into daemon_err
This commit is contained in:
commit
34b5765a23
3 changed files with 12 additions and 1 deletions
|
@ -10,6 +10,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
### Added
|
||||
* Save app state when closing to tray ([#968](https://github.com/lbryio/lbry-app/issues/968))
|
||||
* Added startup-troubleshooting FAQ URL to daemon error ([#1039](https://github.com/lbryio/lbry-app/pull/1039))
|
||||
* Add Rewards FAQ to LBRY app ([#1041](https://github.com/lbryio/lbry-app/pull/1041))
|
||||
*
|
||||
|
||||
### Changed
|
||||
|
@ -20,7 +21,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
* Fixed sort by date of published content ([#986](https://github.com/lbryio/lbry-app/issues/986))
|
||||
* Fix night mode start time, set to 9PM (#1050)
|
||||
* Fix night mode start time, set to 9PM ([#1050](https://github.com/lbryio/lbry-app/issues/1050))
|
||||
*
|
||||
* Disable drag and drop of files into the app ([#1045](https://github.com/lbryio/lbry-app/pull/1045))
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
|
|
|
@ -14,6 +14,10 @@ const RewardSummary = (props: Props) => {
|
|||
<section className="card">
|
||||
<div className="card__title-primary">
|
||||
<h3>{__('Rewards')}</h3>
|
||||
<p className="help">
|
||||
{__('Read our')}{' '}
|
||||
<Link href="https://lbry.io/faq/rewards">{__('FAQ')}</Link>{' '}{__('to learn more about LBRY Rewards')}.
|
||||
</p>
|
||||
</div>
|
||||
<div className="card__content">
|
||||
{unclaimedRewardAmount > 0 ? (
|
||||
|
|
|
@ -62,6 +62,12 @@ ipcRenderer.on('window-is-focused', () => {
|
|||
dock.setBadge('');
|
||||
});
|
||||
|
||||
document.addEventListener('dragover', event => {
|
||||
event.preventDefault();
|
||||
})
|
||||
document.addEventListener('drop', event => {
|
||||
event.preventDefault();
|
||||
});
|
||||
document.addEventListener('click', event => {
|
||||
let { target } = event;
|
||||
while (target && target !== document) {
|
||||
|
|
Loading…
Reference in a new issue