Fixed linting formatting
This commit is contained in:
parent
3ad1041a7b
commit
1ca7f1b124
2 changed files with 16 additions and 9 deletions
|
@ -62,7 +62,11 @@
|
|||
>
|
||||
</b-form-timepicker>
|
||||
</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
|
||||
id="duration"
|
||||
v-model="times.duration"
|
||||
|
@ -163,13 +167,16 @@ export default {
|
|||
this.failed = false;
|
||||
this.working = true;
|
||||
|
||||
store.dispatch("updateRecord", this.resultRecord).then(() => {
|
||||
this.working = false;
|
||||
this.$emit("submit");
|
||||
}).catch(() => {
|
||||
this.failed = true;
|
||||
this.working = false;
|
||||
});
|
||||
store
|
||||
.dispatch("updateRecord", this.resultRecord)
|
||||
.then(() => {
|
||||
this.working = false;
|
||||
this.$emit("submit");
|
||||
})
|
||||
.catch(() => {
|
||||
this.failed = true;
|
||||
this.working = false;
|
||||
});
|
||||
|
||||
return false;
|
||||
},
|
||||
|
|
|
@ -9,7 +9,7 @@ Vue.use(Vuex);
|
|||
export default new Vuex.Store({
|
||||
modules: {
|
||||
juggl
|
||||
},
|
||||
}
|
||||
// plugins: [
|
||||
// createPersistedState({
|
||||
// storage: window.localStorage
|
||||
|
|
Loading…
Reference in a new issue