Fixed linting formatting

This commit is contained in:
Maximilian Giller 2021-01-03 20:39:53 +01:00
parent 3ad1041a7b
commit 1ca7f1b124
2 changed files with 16 additions and 9 deletions

View file

@ -62,7 +62,11 @@
> >
</b-form-timepicker> </b-form-timepicker>
</b-form-group> </b-form-group>
<b-form-group id="duration-group" label="Duration [seconds]" label-for="duration"> <b-form-group
id="duration-group"
label="Duration [seconds]"
label-for="duration"
>
<b-form-input <b-form-input
id="duration" id="duration"
v-model="times.duration" v-model="times.duration"
@ -163,13 +167,16 @@ export default {
this.failed = false; this.failed = false;
this.working = true; this.working = true;
store.dispatch("updateRecord", this.resultRecord).then(() => { store
this.working = false; .dispatch("updateRecord", this.resultRecord)
this.$emit("submit"); .then(() => {
}).catch(() => { this.working = false;
this.failed = true; this.$emit("submit");
this.working = false; })
}); .catch(() => {
this.failed = true;
this.working = false;
});
return false; return false;
}, },

View file

@ -9,7 +9,7 @@ Vue.use(Vuex);
export default new Vuex.Store({ export default new Vuex.Store({
modules: { modules: {
juggl juggl
}, }
// plugins: [ // plugins: [
// createPersistedState({ // createPersistedState({
// storage: window.localStorage // storage: window.localStorage