style: fix linting issues met Prettier
This commit is contained in:
parent
d4dc519a59
commit
62ba67b5b6
3 changed files with 11 additions and 13 deletions
|
@ -1,9 +1,9 @@
|
|||
<script setup lang="ts">
|
||||
import type { LearningObject } from '@/data-objects/learning-objects/learning-object';
|
||||
import type { LearningPath } from '@/data-objects/learning-paths/learning-path';
|
||||
import { useLearningObjectListForPathQuery } from '@/queries/learning-objects';
|
||||
import { useRoute } from 'vue-router';
|
||||
import UsingQueryResult from '@/components/UsingQueryResult.vue';
|
||||
import type { LearningObject } from "@/data-objects/learning-objects/learning-object";
|
||||
import type { LearningPath } from "@/data-objects/learning-paths/learning-path";
|
||||
import { useLearningObjectListForPathQuery } from "@/queries/learning-objects";
|
||||
import { useRoute } from "vue-router";
|
||||
import UsingQueryResult from "@/components/UsingQueryResult.vue";
|
||||
import QuestionNotification from "@/components/QuestionNotification.vue";
|
||||
|
||||
const route = useRoute();
|
||||
|
@ -38,9 +38,9 @@
|
|||
:title="node.title"
|
||||
:active="node.key === props.activeObjectId"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<QuestionNotification :node="node"></QuestionNotification>
|
||||
</template>
|
||||
<template v-slot:append>
|
||||
<QuestionNotification :node="node"></QuestionNotification>
|
||||
</template>
|
||||
</v-list-item>
|
||||
</template>
|
||||
</using-query-result>
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
const route = useRoute();
|
||||
|
||||
const props = defineProps<{
|
||||
learningObjectHruid: string;
|
||||
}>();
|
||||
learningObjectHruid: string;
|
||||
}>();
|
||||
|
||||
const navigationDrawerShown = ref(true);
|
||||
const currentLocale = ref(locale.value);
|
||||
|
|
|
@ -75,9 +75,7 @@
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionsSideBar
|
||||
:learningObjectHruid="props.learningObjectHruid">
|
||||
</DiscussionsSideBar>
|
||||
<DiscussionsSideBar :learningObjectHruid="props.learningObjectHruid"> </DiscussionsSideBar>
|
||||
<div class="discussions-container">
|
||||
<QuestionBox
|
||||
:hruid="props.hruid"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue