mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
3f01af4446
Add ProfileUtils for displaying correct name. Set names in models correctly. Fill names in qml correctly. Fix #8343
11 lines
193 B
QML
11 lines
193 B
QML
pragma Singleton
|
|
|
|
import QtQml 2.14
|
|
|
|
QtObject {
|
|
function displayName(nickName, ensName, displayName, aliasName)
|
|
{
|
|
return nickName || ensName || displayName || aliasName
|
|
}
|
|
}
|