We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16f0bd commit 43daf97Copy full SHA for 43daf97
kolibri/plugins/coach/assets/src/views/common/ReportsControls.vue
@@ -133,6 +133,9 @@
133
return;
134
}
135
this.fetchUserSyncStatus({ member_of: this.$route.params.classId }).then(data => {
136
+ if (!data || !Array.isArray(data)) {
137
+ return;
138
+ }
139
this.userSet = new Set(data.map(item => item.user));
140
setTimeout(() => {
141
this.pollClassListSyncStatuses();
0 commit comments