Add AgentCompetenceGradeDetailPage

This commit is contained in:
Daniel Egger 2024-07-26 15:54:31 +02:00
parent 82a0cf8daa
commit 9674abfa94
2 changed files with 4 additions and 3 deletions

View File

@ -17,9 +17,11 @@ const dashboardStore = useDashboardStore();
const props = defineProps<{
agentRole: string;
courseSlug: string;
competenceCertificateId: string;
courseSessionId: string;
}>();
log.debug("AgentStatisticParentPage created", props);
log.debug("AgentCompetenceGradeDetailPage created", props);
const loading = ref(true);
const courseId = ref<string | undefined>(undefined);

View File

@ -10,7 +10,6 @@ import { useDashboardStore } from "@/stores/dashboard";
import LoadingSpinner from "@/components/ui/LoadingSpinner.vue";
import _ from "lodash";
import { percentToRoundedGrade } from "@/services/assignmentService";
import { a } from "vitest/dist/suite-BWgaIsVn";
const dashboardStore = useDashboardStore();
@ -19,7 +18,7 @@ const props = defineProps<{
courseSlug: string;
}>();
log.debug("AgentStatisticParentPage created", props);
log.debug("AgentCompetenceGradePage created", props);
const loading = ref(true);
const courseId = ref<string | undefined>(undefined);