We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40bc2ea commit e969917Copy full SHA for e969917
packages/studio-ui/src/views/BrowseView.vue
@@ -38,6 +38,9 @@ const courseId = ref<string | null>(null);
38
39
// View lookup function with proper context binding
40
const viewLookupFunction = (viewDescription: any) => {
41
+ console.log('[BrowseView] Looking up view:', viewDescription);
42
+ console.log('[BrowseView] allCourseWare instance:', allCourseWare);
43
+ console.log('[BrowseView] Available courses:', allCourseWare.courses.map(c => c.name));
44
return allCourseWare.getView(viewDescription);
45
};
46
0 commit comments