Skip to content

Commit 6ee3f27

Browse files
committed
CourseFilter: fix
1 parent 4da30c9 commit 6ee3f27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hwproj.front/src/components/Courses/CourseFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const CourseFilter: FC<ICourseFilterProps> = (props) => {
165165
options={state.courseStudents}
166166
getOptionLabel={(option: AccountDataDto) => {
167167
const assignedMentors = getAssignedMentors(option.userId!)
168-
const suffix = assignedMentors.length > 0 ? " (преподаватель " + assignedMentors[0] + ")" : ""
168+
const suffix = assignedMentors.length > 0 ? " преподаватель " + assignedMentors[0] + "" : ""
169169
return option.surname + ' ' + option.name + suffix;
170170
}}
171171
getOptionKey={(option: AccountDataDto) => option.userId ?? ""}

0 commit comments

Comments
 (0)