Skip to content

Commit cd1cea1

Browse files
authored
Groups: Убрать указание названий групп при выборе студентов (#668)
1 parent fe096c8 commit cd1cea1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hwproj.front/src/components/Common/GroupSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const GroupSelector: FC<GroupSelectorProps> = (props) => {
145145
getOptionLabel={(option) => {
146146
const groups = studentToGroups.get(option.userId!);
147147
const groupSuffix = groups && groups.length > 0
148-
? ' — в группе: ' + groups[0]
148+
? ' — в команде'
149149
: '';
150150
return `${option.surname ?? ""} ${option.name ?? ""} ${option.middleName ?? ""}${groupSuffix}`.trim();
151151
}}

0 commit comments

Comments
 (0)