SHA256
Обновить UI сети и профиль
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export function userDisplayName({ login = '', firstName = '', lastName = '' } = {}) {
|
||||
const first = String(firstName || '').trim();
|
||||
const last = String(lastName || '').trim();
|
||||
const full = [first, last].filter(Boolean).join(' ').trim();
|
||||
return full || String(login || '').trim() || 'unknown';
|
||||
}
|
||||
Reference in New Issue
Block a user