From 242e5e136f60c024c167b6fc096fa5595c5ba9bd Mon Sep 17 00:00:00 2001 From: Artem Baskal Date: Tue, 17 Dec 2019 16:14:30 +0300 Subject: [PATCH] - client: hide dns is starting message by default --- client/src/components/App/index.js | 5 +++-- client/src/reducers/index.js | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/client/src/components/App/index.js b/client/src/components/App/index.js index 843047c3..e40ac78f 100644 --- a/client/src/components/App/index.js +++ b/client/src/components/App/index.js @@ -89,12 +89,13 @@ class App extends Component {
- {dashboard.processing && !dashboard.isCoreRunning && ( + {dashboard.processing && } + {!dashboard.isCoreRunning && (
+ />
diff --git a/client/src/reducers/index.js b/client/src/reducers/index.js index 550c080b..159eac4f 100644 --- a/client/src/reducers/index.js +++ b/client/src/reducers/index.js @@ -187,7 +187,7 @@ const dashboard = handleActions( }, { processing: true, - isCoreRunning: false, + isCoreRunning: true, processingVersion: true, processingFiltering: true, processingClients: true,