mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
7a407662e2
Fixes: #7360
30 lines
498 B
QML
30 lines
498 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
|
|
|
|
width: 640
|
|
padding: 0
|
|
|
|
header: null
|
|
footer: null
|
|
|
|
contentItem: ProfileDialogView {
|
|
publicKey: root.publicKey
|
|
profileStore: root.profileStore
|
|
contactsStore: root.contactsStore
|
|
onCloseRequested: root.close()
|
|
}
|
|
}
|