status-desktop/ui/app/AppLayouts/Profile/views/wallet/DappPermissionsView.qml
Sale Djenic 2904018173 fix(@desktop/settings): content on the right side for all subsections need to have the same geometry
Structure of the all subsection of the settings section has the same
high level structure

Fixes #5650
2022-05-10 20:47:29 +02:00

31 lines
563 B
QML

import QtQuick 2.13
import shared.status 1.0
import StatusQ.Controls 0.1
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Components 0.1
import utils 1.0
import "../../stores"
import "../../controls"
Item {
id: root
property WalletStore walletStore
Column {
id: column
anchors.top: parent.top
anchors.left: parent.left
width: parent.width
PermissionsListView {
id: permissionsList
width: parent.width
walletStore: root.walletStore
}
}
}