feat: question icon verschijnt naast leerobjecten die vragen hebben
This commit is contained in:
parent
84774e2720
commit
e07c206ef1
1 changed files with 6 additions and 3 deletions
|
@ -20,7 +20,7 @@
|
||||||
import type { QuestionData, QuestionDTO } from "@dwengo-1/common/interfaces/question";
|
import type { QuestionData, QuestionDTO } from "@dwengo-1/common/interfaces/question";
|
||||||
import {useStudentAssignmentsQuery, useStudentGroupsQuery} from "@/queries/students"
|
import {useStudentAssignmentsQuery, useStudentGroupsQuery} from "@/queries/students"
|
||||||
import type { AssignmentDTO } from "@dwengo-1/common/interfaces/assignment";
|
import type { AssignmentDTO } from "@dwengo-1/common/interfaces/assignment";
|
||||||
import type { GroupDTO } from "@dwengo-1/common/interfaces/group";
|
import type { GroupDTO } from "@dwengo-1/common/interfaces/group";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -272,7 +272,10 @@ import type { GroupDTO } from "@dwengo-1/common/interfaces/group";
|
||||||
:icon="ICONS[getNavItemState(node)]"
|
:icon="ICONS[getNavItemState(node)]"
|
||||||
></v-icon>
|
></v-icon>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:append> {{ node.estimatedTime }}' </template>
|
<template v-slot:append>
|
||||||
|
<v-icon v-if="false" icon="mdi-help-circle-outline" color="red" />
|
||||||
|
<div>{{ node.estimatedTime }}'</div>
|
||||||
|
</template>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
</template>
|
</template>
|
||||||
</using-query-result>
|
</using-query-result>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue