feat: mentor dashboard

This commit is contained in:
Reto Aebersold 2023-12-15 10:58:49 +01:00
parent 183c3cb86b
commit c02cd2b73f
1 changed files with 3 additions and 3 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,8 +23,8 @@ const circleFilter = computed(() => {
{ name: "Circle: Alle", id: "_all" },
...summary.value.circles.map((circle) => ({
name: `Circle: ${circle.title}`,
id: circle.id
}))
id: circle.id,
})),
];
});
</script>