feat: mentor dashboard
This commit is contained in:
parent
f642d2b57e
commit
183c3cb86b
|
|
@ -11,7 +11,7 @@ const statusFilterValue = ref({ name: "Alle", id: "_all" });
|
||||||
|
|
||||||
const statusFilter = ref([
|
const statusFilter = ref([
|
||||||
{ name: "Alle", id: "_all" },
|
{ name: "Alle", id: "_all" },
|
||||||
{ name: "Zu erledigen", id: "todo" },
|
{ name: "Zu erledigen", id: "todo" }
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const circleFilterValue = ref({ name: "Circle: Alle", id: "_all" });
|
const circleFilterValue = ref({ name: "Circle: Alle", id: "_all" });
|
||||||
|
|
@ -23,14 +23,13 @@ const circleFilter = computed(() => {
|
||||||
{ name: "Circle: Alle", id: "_all" },
|
{ name: "Circle: Alle", id: "_all" },
|
||||||
...summary.value.circles.map((circle) => ({
|
...summary.value.circles.map((circle) => ({
|
||||||
name: `Circle: ${circle.title}`,
|
name: `Circle: ${circle.title}`,
|
||||||
id: circle.id,
|
id: circle.id
|
||||||
})),
|
}))
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
{{ summary }}
|
|
||||||
<div v-if="summary" class="bg-white">
|
<div v-if="summary" class="bg-white">
|
||||||
<div class="flex flex-col space-x-2 lg:flex-row">
|
<div class="flex flex-col space-x-2 lg:flex-row">
|
||||||
<ItDropdownSelect
|
<ItDropdownSelect
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue