update get student name in attendance

This commit is contained in:
Primakov Alexandr Alexandrovich
2024-12-12 11:17:38 +03:00
parent 9509f12d73
commit 0aebb87210
2 changed files with 4 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ export const Attendance = () => {
value:
student.family_name && student.given_name
? `${student.family_name} ${student.given_name}`
: student.name || student.email,
: student.name || student.email || student.preferred_username || student.family_name || student.given_name,
})
})
})