Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Fix broken pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Allypost committed Jun 22, 2021
1 parent c1bf3bf commit 515d699
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pages/blog/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ name: PageBlogHome
</router>

<script>
import {
mapGetters,
} from "vuex";
import AppMaxWidthContainer from "~/components/AppMaxWidthContainer";
import AppNewsCard from "~/components/news/NewsCard";
import TranslatedText from "~/components/TranslatedText";
Expand Down Expand Up @@ -106,6 +109,10 @@ name: PageBlogHome
},
computed: {
...mapGetters("translations", [
"capitalizedTranslation",
]),
headNews() {
const headNews = this.news.slice(0, 1).pop();
Expand Down
5 changes: 5 additions & 0 deletions pages/prijava-firmi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ name: PagePrijavaFirmi
} from "vuelidate";
import {
mapActions,
mapGetters,
} from "vuex";
import {
companyExtrasFormInputs,
Expand Down Expand Up @@ -599,6 +600,10 @@ name: PagePrijavaFirmi
}),
computed: {
...mapGetters("translations", [
"capitalizedTranslation",
]),
vatValid() {
return this.vatInfo.isValid;
},
Expand Down

0 comments on commit 515d699

Please sign in to comment.