fix(frontend): 🐛 fetch categories on load (#709)

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-09-30 17:14:22 -08:00 committed by GitHub
parent 69e226a0ed
commit b275aef04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -15,5 +15,6 @@
"i18n-ally.keystyle": "nested",
"cSpell.words": ["compression", "hkotel", "performant", "postgres", "webp"],
"search.mode": "reuseEditor",
"python.linting.flake8Enabled": true
"python.linting.flake8Enabled": true,
"conventionalCommits.scopes": ["frontend"]
}

View File

@ -55,6 +55,7 @@ export default {
this.$store.dispatch("requestUserData");
this.$store.dispatch("requestCurrentGroup");
this.$store.dispatch("requestTags");
this.$store.dispatch("requestCategories");
this.$store.dispatch("requestAppInfo");
this.$store.dispatch("requestSiteSettings");