feat: mentor dashboard
This commit is contained in:
parent
183c3cb86b
commit
c02cd2b73f
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue