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 df1edbb commit 469bc8dCopy full SHA for 469bc8d
packages/standalone-ui/src/questions/index.ts
@@ -64,10 +64,12 @@ export function allCustomQuestions() {
64
}
65
});
66
67
+ const courses = [exampleCourse];
68
+
69
// Return structured data for studio-ui integration
70
return {
71
// Course instances with question instances
- courses: [exampleCourse],
72
+ courses,
73
74
// Question class constructors for registration
75
questionClasses,
@@ -83,7 +85,7 @@ export function allCustomQuestions() {
83
85
questionCount: questionClasses.length,
84
86
dataShapeCount: dataShapes.length,
87
viewCount: views.length,
- courseCount: 1,
88
+ courseCount: courses.length,
89
packageName: '@vue-skuilder/standalone-ui',
90
sourceDirectory: 'src/questions',
91
},
0 commit comments