From 5e2cc96830e87e3e8df83e5a9ca722d013d64d64 Mon Sep 17 00:00:00 2001 From: Henry Whitaker Date: Sat, 10 Apr 2021 11:59:55 +0100 Subject: [PATCH] Make General the default tab again --- public/js/app.js | 2 +- resources/js/components/Settings/SettingsTabs.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/app.js b/public/js/app.js index f455acc2..00986d83 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -148893,7 +148893,7 @@ var SettingsTabs = /*#__PURE__*/function (_Component) { }); _this.state = { - tab: "Tables", + tab: "General", data: _this.props.data }; return _this; diff --git a/resources/js/components/Settings/SettingsTabs.js b/resources/js/components/Settings/SettingsTabs.js index fe93dfc6..d4721dac 100644 --- a/resources/js/components/Settings/SettingsTabs.js +++ b/resources/js/components/Settings/SettingsTabs.js @@ -18,7 +18,7 @@ export default class SettingsTabs extends Component { super(props) this.state = { - tab: "Tables", + tab: "General", data: this.props.data } }