summary refs log tree commit diff
path: root/synapse_topology/webui
diff options
context:
space:
mode:
authorJorik Schellekens <joriks@matrix.org>2019-09-05 10:55:19 +0100
committerJorik Schellekens <joriks@matrix.org>2019-09-05 10:55:19 +0100
commitaf3af0c8e444a9bec733c8e7d9f058435e06358e (patch)
tree2114602cc91e2403ea70a637f238b23e468ef6ca /synapse_topology/webui
parentUpdate README.rst (diff)
downloadsynapse-af3af0c8e444a9bec733c8e7d9f058435e06358e.tar.xz
Just say the config has been set up.
Diffstat (limited to 'synapse_topology/webui')
-rw-r--r--synapse_topology/webui/src/js/components/ConfigCompleted.jsx (renamed from synapse_topology/webui/src/js/components/ConfigSelector.jsx)5
-rw-r--r--synapse_topology/webui/src/js/components/UI.jsx4
2 files changed, 5 insertions, 4 deletions
diff --git a/synapse_topology/webui/src/js/components/ConfigSelector.jsx b/synapse_topology/webui/src/js/components/ConfigCompleted.jsx
index 48102da83d..8610bbf53a 100644
--- a/synapse_topology/webui/src/js/components/ConfigSelector.jsx
+++ b/synapse_topology/webui/src/js/components/ConfigCompleted.jsx
@@ -5,8 +5,9 @@ export default () => {
 
     return <ContentWrapper>
         <h1>Config selection</h1>
-        <p>The base config has already been setup. Please select a config to edit:</p>
-        <p>TODO: .. well .. this.</p>
+        <p>The base config has already been setup.</p>
+        <p>If you want to start the installation from scratch please delete the
+            config yaml.</p>
     </ContentWrapper>;
 
 }
\ No newline at end of file
diff --git a/synapse_topology/webui/src/js/components/UI.jsx b/synapse_topology/webui/src/js/components/UI.jsx
index 2decaf382b..9d036481c3 100644
--- a/synapse_topology/webui/src/js/components/UI.jsx
+++ b/synapse_topology/webui/src/js/components/UI.jsx
@@ -35,7 +35,7 @@ import PortSelection from '../containers/PortSelection';
 import ReverseProxySampleConfig from '../containers/ReverseProxySampleConfig';
 import DelegationSampleConfig from '../containers/DelegationSampleConfig';
 import Database from '../containers/Database';
-import ConfigSelector from './ConfigSelector';
+import ConfigCompleted from './ConfigCompleted';
 import CompleteSetup from '../containers/CompleteSetup';
 import ContentWrapper from '../containers/ContentWrapper';
 import Done from '../containers/Done';
@@ -88,7 +88,7 @@ export default ({ setupUI, configUI, baseConfig }) => {
     if (baseConfig.setupDone) {
 
         console.log(`switching to ui ${configUI}`);
-        return <ConfigSelector></ConfigSelector>
+        return <ConfigCompleted></ConfigCompleted>
 
     }