Add journalctl export button (#693)

* Add journalctl export button

* Run spotless

* Split into 2 tabs
This commit is contained in:
Matt
2023-01-03 19:42:19 -08:00
committed by GitHub
parent 0b5256df12
commit af6f5eb0c4
6 changed files with 349 additions and 81 deletions

View File

@@ -37,7 +37,8 @@
import Networking from './SettingsViews/Networking'
import Lighting from "./SettingsViews/Lighting";
import cvImage from '../components/common/cv-image'
import General from "./SettingsViews/General";
import Stats from "./SettingsViews/Stats";
import DeviceControl from "./SettingsViews/DeviceControl";
export default {
name: 'SettingsTab',
@@ -69,7 +70,7 @@
},
tabList: {
get() {
return [General, Networking].concat(this.$store.state.settings.lighting.supported ? Lighting : []);
return [Stats, DeviceControl, Networking].concat(this.$store.state.settings.lighting.supported ? Lighting : []);
}
}
},