From 13c95c9021b488c73fc46dd7ff13fe9b6bd1c097 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Tue, 20 May 2025 17:16:12 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- .../src/components/DiscussionsSideBar.vue | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/frontend/src/components/DiscussionsSideBar.vue b/frontend/src/components/DiscussionsSideBar.vue index 8c4a2a32..d32a2f62 100644 --- a/frontend/src/components/DiscussionsSideBar.vue +++ b/frontend/src/components/DiscussionsSideBar.vue @@ -45,21 +45,21 @@ v-slot="learningPaths: { data: LearningPath[] }" > - - {{ learningPath.title }} - - - - - - + v-for="learningPath in learningPaths.data" + :key="learningPath.hruid" + :value="learningPath.hruid" + > + + {{ learningPath.title }} + + + + + +