moment/src/qml/Pages/AddChat/CurrentUserAvatar.qml

10 lines
263 B
QML
Raw Normal View History

2019-11-10 06:19:10 +11:00
import QtQuick 2.12
import "../../Base"
HUserAvatar {
clientUserId: addChatPage.userId
userId: clientUserId
displayName: addChatPage.account ? addChatPage.account.display_name : ""
mxc: addChatPage.account ? addChatPage.account.avatar_url : ""
}