+
+
-
{{ student.firstName + " " + student.lastName }}
+
+
+
+ {{ t("not-in-group-message") }}
+
+
+
diff --git a/frontend/src/views/assignments/TeacherAssignment.vue b/frontend/src/views/assignments/TeacherAssignment.vue
index 04fea1a6..918c2abe 100644
--- a/frontend/src/views/assignments/TeacherAssignment.vue
+++ b/frontend/src/views/assignments/TeacherAssignment.vue
@@ -49,15 +49,6 @@
},
];
- const descriptionRules = [
- (value: string): string | boolean => {
- if (!value || value.trim() === "") {
- return "Description cannot be empty.";
- }
- return true;
- },
- ];
-
// Get all the groups withing the assignment
const groupsQueryResult = useGroupsQuery(props.classId, props.assignmentId, true);
groups.value = groupsQueryResult.data.value?.groups;