We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a540090 commit ebbd966Copy full SHA for ebbd966
1 file changed
hwproj.front/src/components/Common/GroupSelector.tsx
@@ -163,7 +163,7 @@ const GroupSelector: FC<GroupSelectorProps> = (props) => {
163
tagValue.map((option, index) => (
164
<Chip
165
{...getTagProps({index})}
166
- label={`${option.surname ?? ""} ${option.name ?? ""} / ${option.email ?? ""}`.trim()}
+ label={`${option.surname ?? ""} ${option.name ?? ""} ${option.middleName ?? ""}`.trim()}
167
key={option.userId}
168
style={studentsInMultipleGroups.has(option.userId!) ? {color: "#3f51b5"} : undefined}
169
/>
0 commit comments