Bug Fixes (#467)

* fixes #463

* fixes #465

* fixes #461

* fixes #458 key error

* Fixes #459

* Fixes comments shown when printing

* fix meal-image not return on API call

* return better status

* reorganize docs

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-06-04 18:45:13 -08:00 committed by GitHub
commit 59f8b74460
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 72 additions and 46 deletions

View file

@ -14,7 +14,7 @@
<v-icon>mdi-account-plus-outline</v-icon>
</v-tab>
<v-tab href="#groups">
<v-tab href="#groups" @click="reqGroups">
{{ $t("group.groups") }}
<v-icon>{{ $globals.icons.group }}</v-icon>
</v-tab>
@ -55,7 +55,12 @@ export default {
},
},
mounted() {
this.$store.dispatch("requestAllGroups");
this.reqGroups();
},
methods: {
reqGroups() {
this.$store.dispatch("requestAllGroups");
},
},
};
</script>