CSS fixes #1587

Merged
neb-b merged 11 commits from css-fixes into master 2018-06-14 22:33:39 +02:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 88b4a73fca - Show all commits

View file

@ -126,7 +126,7 @@
"yarn": "^1.3"
},
"lbrySettings": {
"lbrynetDaemonVersion": "0.20.0rc14",
"lbrynetDaemonVersion": "0.20.0",
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip",
kauffj commented 2018-06-14 21:43:34 +02:00 (Migrated from github.com)
Review

nice CSS fix 😁

nice CSS fix :grin:
"lbrynetDaemonDir": "static/daemon",
"lbrynetDaemonFileName": "lbrynet-daemon"

View file

@ -1,9 +1,9 @@
import React from 'react';
import { connect } from 'react-redux';
import { doDownloadUpgrade, doSkipUpgrade, doHideNotification } from 'redux/actions/app';
import { doHideNotification } from 'lbry-redux';
import { doDownloadUpgrade, doSkipUpgrade } from 'redux/actions/app';
import ModalUpgrade from './view';
const select = state => ({});
const select = () => ({});
const perform = dispatch => ({
downloadUpgrade: () => dispatch(doDownloadUpgrade()),

View file

@ -10,6 +10,7 @@ import {
doNotify,
selectNotification,
MODALS,
doHideNotification,
} from 'lbry-redux';
import Native from 'native';
import { doFetchRewardedContent } from 'redux/actions/content';
@ -89,6 +90,7 @@ export function doDownloadUpgrade() {
dispatch({
type: ACTIONS.UPGRADE_DOWNLOAD_STARTED,
});
dispatch(doHideNotification());
dispatch(
doNotify({
id: MODALS.DOWNLOADING,