diff --git a/hwproj.front/src/components/Common/GroupSelector.tsx b/hwproj.front/src/components/Common/GroupSelector.tsx index 05b9c9fba..b83e7d6a7 100644 --- a/hwproj.front/src/components/Common/GroupSelector.tsx +++ b/hwproj.front/src/components/Common/GroupSelector.tsx @@ -145,7 +145,7 @@ const GroupSelector: FC = (props) => { getOptionLabel={(option) => { const groups = studentToGroups.get(option.userId!); const groupSuffix = groups && groups.length > 0 - ? ' — в группе: ' + groups[0] + ? ' — в команде' : ''; return `${option.surname ?? ""} ${option.name ?? ""} ${option.middleName ?? ""}${groupSuffix}`.trim(); }}