diff --git a/frontend/src/components/UI/Search/SearchBar.vue b/frontend/src/components/UI/Search/SearchBar.vue index 95e8adc5f..9ab7b6f49 100644 --- a/frontend/src/components/UI/Search/SearchBar.vue +++ b/frontend/src/components/UI/Search/SearchBar.vue @@ -1,31 +1,37 @@ - + + \ No newline at end of file diff --git a/frontend/src/components/UI/SiteMenu.vue b/frontend/src/components/UI/SiteMenu.vue index b9123d8da..a2adffdf1 100644 --- a/frontend/src/components/UI/SiteMenu.vue +++ b/frontend/src/components/UI/SiteMenu.vue @@ -87,9 +87,6 @@ export default { }, mounted() {}, computed: { - loggedIn() { - return this.$store.getters.getIsLoggedIn; - }, filteredItems() { if (this.loggedIn) { return this.items.filter(x => x.restricted == true); @@ -97,6 +94,9 @@ export default { return this.items.filter(x => x.restricted == false); } }, + loggedIn() { + return this.$store.getters.getIsLoggedIn; + }, }, methods: {