Skip to content

Commit affebfe

Browse files
committed
fix
1 parent ebbd966 commit affebfe

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
@@ -147,7 +147,7 @@ const GroupSelector: FC<GroupSelectorProps> = (props) => {
147147
const groupSuffix = groups && groups.length > 0
148148
? ' — в группе: ' + groups[0]
149149
: '';
150-
return `${option.surname ?? ""} ${option.name ?? ""} / ${option.email ?? ""}${groupSuffix}`.trim();
150+
return `${option.surname ?? ""} ${option.name ?? ""} ${option.middleName ?? ""}${groupSuffix}`.trim();
151151
}}
152152
filterSelectedOptions
153153
onChange={(_, value) => {

0 commit comments

Comments
 (0)