fix(Community): community invitation is missing intro and logo
- fix a binding loop warning for `implicitHeight` - fix word wrap for long texts with no word breaks Fixes #14536
This commit is contained in:
parent
cb1b2af712
commit
ccc1539178
|
@ -204,7 +204,8 @@ Control {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
contentItem: ColumnLayout {
|
ColumnLayout {
|
||||||
|
anchors.fill: parent
|
||||||
spacing: 0
|
spacing: 0
|
||||||
|
|
||||||
// warning panel
|
// warning panel
|
||||||
|
|
|
@ -465,7 +465,7 @@ StatusStackModal {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
text: root.introMessage || qsTr("Community <b>%1</b> has no intro message...").arg(root.communityName)
|
text: root.introMessage || qsTr("Community <b>%1</b> has no intro message...").arg(root.communityName)
|
||||||
color: Theme.palette.directColor1
|
color: Theme.palette.directColor1
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue