feat: mentor dashboard

This commit is contained in:
Reto Aebersold 2023-12-15 10:58:09 +01:00
parent f642d2b57e
commit 183c3cb86b
1 changed files with 3 additions and 4 deletions

View File

@ -11,7 +11,7 @@ const statusFilterValue = ref({ name: "Alle", id: "_all" });
const statusFilter = ref([
{ name: "Alle", id: "_all" },
{ name: "Zu erledigen", id: "todo" },
{ name: "Zu erledigen", id: "todo" }
]);
const circleFilterValue = ref({ name: "Circle: Alle", id: "_all" });
@ -23,14 +23,13 @@ const circleFilter = computed(() => {
{ name: "Circle: Alle", id: "_all" },
...summary.value.circles.map((circle) => ({
name: `Circle: ${circle.title}`,
id: circle.id,
})),
id: circle.id
}))
];
});
</script>
<template>
{{ summary }}
<div v-if="summary" class="bg-white">
<div class="flex flex-col space-x-2 lg:flex-row">
<ItDropdownSelect