diff --git a/src/components/CourseSelect.vue b/src/components/CourseSelect.vue
index 784287bc822f8f1cfc96307cab8a2954b8f468f8..19f372a1fd0625d809d9267546c06e24a8b2bb5c 100644
--- a/src/components/CourseSelect.vue
+++ b/src/components/CourseSelect.vue
@@ -19,7 +19,7 @@
hide-selected
aria-required="true"
@change="modelChanged"
- placeholder="Class name"
+ placeholder="Course name"
@click:prepend="setInputElementFocus($refs.courseAutocomplete)"
class="course-select-component"
>
diff --git a/src/components/Dialogs/DialogComponents/UserSelectForCourse.vue b/src/components/Dialogs/DialogComponents/UserSelectForCourse.vue
index 509c5d4827e5b24e611e8c10c80a48337287e62d..fd89f2ef0dce2419f6f9b92e3b84ce6b0714f7bd 100644
--- a/src/components/Dialogs/DialogComponents/UserSelectForCourse.vue
+++ b/src/components/Dialogs/DialogComponents/UserSelectForCourse.vue
@@ -23,7 +23,9 @@
"
>You have
{{ availableSeatsInCourse }}
- available seat reservations
diff --git a/src/components/Training/TrainingAttendance.vue b/src/components/Training/TrainingAttendance.vue
index cd8e3acb9ecfa6d59a05add085bdc07b2bfe44a0..ebe52f1b83bbac337fd19c578f08798aac416e2a 100644
--- a/src/components/Training/TrainingAttendance.vue
+++ b/src/components/Training/TrainingAttendance.vue
@@ -114,7 +114,11 @@
-
+
diff --git a/tests/unit/components/Training/TrainingAttendance.spec.js b/tests/unit/components/Training/TrainingAttendance.spec.js
index cf23a7641024815a1abc1a4a2a25ae8f74f00e6e..2e48a5b52c98323a72e879280b9cb7604670ae96 100644
--- a/tests/unit/components/Training/TrainingAttendance.spec.js
+++ b/tests/unit/components/Training/TrainingAttendance.spec.js
@@ -456,7 +456,6 @@ describe("TrainingAttendance", () => {
expect(wrapper.vm.$store.commit).toHaveBeenCalledTimes(1);
});
-
it("should call fetchDebounced when options change", async () => {
TrainingService.getCourseRegistrationsById = jest
.fn()