Skip to content
Snippets Groups Projects
Commit ec06111b authored by Taras's avatar Taras
Browse files

Fix user's name on settings page

parent 29de9cd2
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ class ProfileView( ...@@ -21,7 +21,7 @@ class ProfileView(
fun setData(user: User) { fun setData(user: User) {
with(binding) { with(binding) {
ivProfile.loadProfileIcon(user.avatarUrl, user.notEmptyDisplayName()) ivProfile.loadProfileIcon(user.avatarUrl, user.notEmptyDisplayName())
tvUserName.text = user.displayName tvUserName.text = user.notEmptyDisplayName()
tvUserId.text = user.userId tvUserId.text = user.userId
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment