Skip to content

Commit

Permalink
fix(LinkPreviews): Fixing implicitHeight binding loop
Browse files Browse the repository at this point in the history
Closing #10057
  • Loading branch information
alexjba committed Mar 30, 2023
1 parent 57467c6 commit dfbaf9e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ui/imports/shared/views/chat/InvitationBubbleView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ import shared.popups 1.0
Control {
id: root

implicitWidth: 270 // by design
implicitHeight: !d.invitedCommunity ? 0 : Math.max(implicitBackgroundHeight + topInset + bottomInset,
implicitContentHeight + verticalPadding)

implicitWidth: d.invitedCommunity ? 270 /*by design*/ : 0
padding: 1

property var store
Expand Down

0 comments on commit dfbaf9e

Please sign in to comment.