Skip to content
Snippets Groups Projects

Draft: Resolve "[TCC planning] Frontend is incredibly slow with large amounts of entries"

4 unresolved threads
2 files
+ 13
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -288,9 +288,7 @@ export default {
Object.assign(existingCreatedCourse, newValue);
}
} else {
if (
!course.lrTimeboundCourseConfigs?.length
) {
if (!course.lrTimeboundCourseConfigs?.length) {
let existingCreatedCourseConfig = this.createdCourseConfigs.find(
(c) =>
c.course === course.id &&
@@ -498,7 +496,11 @@ export default {
subjects: {
query: subjects,
skip() {
return !this.groupIDSet.size || !this.internalValidityRange || !this.persons.length;
return (
!this.groupIDSet.size ||
!this.internalValidityRange ||
!this.persons.length
);
},
variables() {
return {
Loading