mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
c791173c81
connection Closes: #13326
34 lines
680 B
QML
34 lines
680 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
import shared.views 1.0
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
property var parentPopup
|
|
|
|
property string publicKey
|
|
|
|
property var profileStore
|
|
property var contactsStore
|
|
property var networkConnectionStore
|
|
property var communitiesModel
|
|
|
|
width: 640
|
|
padding: 0
|
|
|
|
header: null
|
|
footer: null
|
|
|
|
contentItem: ProfileDialogView {
|
|
publicKey: root.publicKey
|
|
profileStore: root.profileStore
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
communitiesModel: root.communitiesModel
|
|
onCloseRequested: root.close()
|
|
}
|
|
}
|