Rename users.getUser to users.find
This commit is contained in:
@@ -7,7 +7,7 @@ MouseArea {
|
||||
width: memberList.width
|
||||
height: childrenRect.height
|
||||
|
||||
property var memberInfo: users.getUser(model.userId)
|
||||
property var memberInfo: users.find(model.userId)
|
||||
|
||||
HRowLayout {
|
||||
width: parent.width
|
||||
|
@@ -24,7 +24,7 @@ HColumnLayout {
|
||||
|
||||
proxyRoles: ExpressionRole {
|
||||
name: "displayName"
|
||||
expression: users.getUser(userId).displayName || userId
|
||||
expression: users.find(userId).displayName || userId
|
||||
}
|
||||
|
||||
sorters: StringSorter {
|
||||
|
Reference in New Issue
Block a user