style: vraag indicator en estimated time staan naast elkaar ipv onder

This commit is contained in:
Timo De Meyst 2025-04-24 20:58:06 +02:00
parent 3f26353d79
commit 0a37d96c69
2 changed files with 5 additions and 2 deletions

View file

@ -19,6 +19,5 @@ const hasQuestions = computed(() => {
</script>
<template v-if="!isLoading & !error">
<v-icon v-if="hasQuestions" icon="mdi-help-circle-outline" color="red" size="small" />
<div>{{ node.estimatedTime }}'</div>
</template>
<style scoped></style>

View file

@ -272,7 +272,11 @@ import QuestionNotification from "@/components/QuestionNotification.vue";
:icon="ICONS[getNavItemState(node)]"
></v-icon>
</template>
<QuestionNotification :node="node" v-slot:append></QuestionNotification>
<template v-slot:append>
<QuestionNotification :node="node"></QuestionNotification>
<div>{{ node.estimatedTime }}'</div>
</template>
</v-list-item>
</template>
</using-query-result>