Fix(Communities): Fix cropped list in invite users to community popup
Close #7798
This commit is contained in:
parent
b78a700040
commit
547b41bf6b
|
@ -23,7 +23,7 @@ ColumnLayout {
|
||||||
|
|
||||||
property var pubKeys: ([])
|
property var pubKeys: ([])
|
||||||
|
|
||||||
spacing: Style.current.bigPadding
|
spacing: 0
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
id: headline
|
id: headline
|
||||||
|
@ -37,14 +37,16 @@ ColumnLayout {
|
||||||
StatusInput {
|
StatusInput {
|
||||||
id: filterInput
|
id: filterInput
|
||||||
placeholderText: qsTr("Search contacts")
|
placeholderText: qsTr("Search contacts")
|
||||||
input.asset.name: "search"
|
|
||||||
input.clearable: true
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.leftMargin: Style.current.padding
|
|
||||||
Layout.rightMargin: Style.current.padding
|
|
||||||
maximumHeight: 36
|
maximumHeight: 36
|
||||||
topPadding: 0
|
topPadding: 0
|
||||||
bottomPadding: 0
|
bottomPadding: 0
|
||||||
|
input.asset.name: "search"
|
||||||
|
input.clearable: true
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: Style.current.bigPadding
|
||||||
|
Layout.bottomMargin: Style.current.padding
|
||||||
|
Layout.leftMargin: Style.current.padding
|
||||||
|
Layout.rightMargin: Style.current.padding
|
||||||
}
|
}
|
||||||
|
|
||||||
ExistingContacts {
|
ExistingContacts {
|
||||||
|
@ -72,14 +74,11 @@ ColumnLayout {
|
||||||
root.pubKeys = pubKeysCopy
|
root.pubKeys = pubKeysCopy
|
||||||
}
|
}
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true
|
||||||
Layout.leftMargin: Style.current.halfPadding
|
Layout.leftMargin: Style.current.halfPadding
|
||||||
Layout.rightMargin: Style.current.halfPadding
|
Layout.rightMargin: Style.current.halfPadding
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
|
||||||
Layout.fillHeight: true
|
|
||||||
}
|
|
||||||
|
|
||||||
StatusModalDivider {
|
StatusModalDivider {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue