Skip to content

Commit

Permalink
fixes failing class name display
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOXDi committed Jan 9, 2025
1 parent e0cf5fe commit 2fc8b7c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
useLearnerResources();
const classId = computed(() => props.classId);
const classroom = computed(() => getClass(classId));
const classroom = computed(() => getClass(classId.value));
const className = computed(() => (get(classroom) ? get(classroom).name : ''));
const activeLessons = computed(() => getClassActiveLessons(get(classId)));
const activeQuizzes = computed(() => getClassActiveQuizzes(get(classId)));
const activeLessons = computed(() => getClassActiveLessons(get(classId.value)));
const activeQuizzes = computed(() => getClassActiveQuizzes(get(classId.value)));
let pollTimeoutId;
Expand Down

0 comments on commit 2fc8b7c

Please sign in to comment.