From 0bdefbf053beb80736eff0a13fe8b90618c8d6dc Mon Sep 17 00:00:00 2001
From: Kai Reinhard <K.Reinhard@micromata.de>
Date: Fri, 21 Dec 2018 22:56:09 +0000
Subject: [PATCH] ServerConfiguration is also stored in json.

---
 borgbutler-webapp/src/components/views/config/ConfigurationPage.jsx |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/borgbutler-webapp/src/components/views/config/ConfigurationPage.jsx b/borgbutler-webapp/src/components/views/config/ConfigurationPage.jsx
index 8f49632..3a26b4d 100644
--- a/borgbutler-webapp/src/components/views/config/ConfigurationPage.jsx
+++ b/borgbutler-webapp/src/components/views/config/ConfigurationPage.jsx
@@ -71,23 +71,23 @@
                         className={classNames({active: this.state.activeTab === '1'})}
                         onClick={this.toggleTab('1')}
                     >
-                        <I18n name={'configuration.account'}/>
+                        <I18n name={'configuration.server'}/>
                     </NavLink>
                     <NavLink
                         className={classNames({active: this.state.activeTab === '2'})}
                         onClick={this.toggleTab('2')}
                     >
-                        <I18n name={'configuration.server'}/>
+                        <I18n name={'configuration.account'}/>
                     </NavLink>
                 </Nav>
                 <TabContent activeTab={this.state.activeTab}>
                     <TabPane tabId={'1'}>
-                        <ConfigAccountTab ref={this.accountTabRef}/>
+                        <ConfigServerTab ref={this.serverTabRef}/>
                     </TabPane>
                 </TabContent>
                 <TabContent activeTab={this.state.activeTab}>
                     <TabPane tabId={'2'}>
-                        <ConfigServerTab ref={this.serverTabRef}/>
+                        <ConfigAccountTab ref={this.accountTabRef}/>
                     </TabPane>
                 </TabContent>
                 <FormGroup>

--
Gitblit v1.10.0