Add list of upstream servers

Closes #344
This commit is contained in:
Ildar Kamalov
2018-09-26 18:38:06 +03:00
parent 3afd8fccc7
commit 2c72035000
5 changed files with 24 additions and 16 deletions

View File

@@ -3,8 +3,8 @@ import { initSettings, toggleSetting, handleUpstreamChange, setUpstream, testUps
import Settings from '../components/Settings';
const mapStateToProps = (state) => {
const { settings } = state;
const props = { settings };
const { settings, dashboard } = state;
const props = { settings, dashboard };
return props;
};