We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da30c9 commit 6ee3f27Copy full SHA for 6ee3f27
hwproj.front/src/components/Courses/CourseFilter.tsx
@@ -165,7 +165,7 @@ const CourseFilter: FC<ICourseFilterProps> = (props) => {
165
options={state.courseStudents}
166
getOptionLabel={(option: AccountDataDto) => {
167
const assignedMentors = getAssignedMentors(option.userId!)
168
- const suffix = assignedMentors.length > 0 ? " (преподаватель " + assignedMentors[0] + ")" : ""
+ const suffix = assignedMentors.length > 0 ? " — преподаватель " + assignedMentors[0] + "" : ""
169
return option.surname + ' ' + option.name + suffix;
170
}}
171
getOptionKey={(option: AccountDataDto) => option.userId ?? ""}
0 commit comments