Run lint:fix and accept a huge formatting change

This commit is contained in:
Julian Stirling 2025-10-27 18:00:00 +00:00
parent 3900c3e1ad
commit c085d2c0ac
68 changed files with 756 additions and 1047 deletions

View file

@ -19,7 +19,7 @@ function getOriginFromLocation() {
export default new Vuex.Store({
modules: {
wot: wotStoreModule
wot: wotStoreModule,
},
state: {
origin: getOriginFromLocation(),
@ -32,7 +32,7 @@ export default new Vuex.Store({
galleryEnabled: true,
appTheme: "system",
activeStreams: {},
microscopeHostname: ""
microscopeHostname: "",
},
mutations: {
@ -77,13 +77,13 @@ export default new Vuex.Store({
},
changeMicroscopeHostname(state, value) {
state.microscopeHostname = value;
}
},
},
actions: {},
getters: {
baseUri: state => state.origin,
ready: state => state.available
}
ready: state => state.available,
},
});