diff --git a/frontend/src/components/DiscussionSideBarElement.vue b/frontend/src/components/DiscussionSideBarElement.vue index 4b24fce4..34440ad6 100644 --- a/frontend/src/components/DiscussionSideBarElement.vue +++ b/frontend/src/components/DiscussionSideBarElement.vue @@ -1,17 +1,16 @@ - + diff --git a/frontend/src/components/DiscussionsSideBar.vue b/frontend/src/components/DiscussionsSideBar.vue index 7f417e1c..c90394c2 100644 --- a/frontend/src/components/DiscussionsSideBar.vue +++ b/frontend/src/components/DiscussionsSideBar.vue @@ -5,21 +5,20 @@ import { useI18n } from "vue-i18n"; import { useGetAllLearningPaths } from "@/queries/learning-paths.ts"; import { ref, watch } from "vue"; - import { useRoute } from 'vue-router'; + import { useRoute } from "vue-router"; const { t, locale } = useI18n(); const route = useRoute(); const navigationDrawerShown = ref(true); const currentLocale = ref(locale.value); - const expanded = ref([route.params.hruid]) + const expanded = ref([route.params.hruid]); watch(locale, (newLocale) => { currentLocale.value = newLocale; }); const allLearningPathsResult = useGetAllLearningPaths(() => currentLocale.value); - - +