Fix empty profile title
If no display name is provided, use user account name.
This commit is contained in:
parent
4a03433ccb
commit
a51acf9499
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ Item {
|
|||
id: ttl
|
||||
text:
|
||||
if (title === "") {
|
||||
description.split('')[0]
|
||||
description.split('@')[0]
|
||||
}
|
||||
else title
|
||||
height: contentHeight
|
||||
|
|
Loading…
Reference in a new issue