mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 12:35:52 +03:00
Merge pull request #4573 from nextcloud/bugfix/qml-warning
Fix 'TypeError: Cannot readproperty 'messageSent' of undefined'.
This commit is contained in:
commit
a5f5f5081d
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ MouseArea {
|
|||
|
||||
Loader {
|
||||
id: talkReplyTextFieldLoader
|
||||
active: root.isChatActivity && root.isTalkReplyPossible && root.activityData.messageSent === ""
|
||||
active: root.isChatActivity && root.isTalkReplyPossible && model.messageSent === ""
|
||||
visible: root.isTalkReplyOptionVisible
|
||||
|
||||
Layout.leftMargin: Style.trayListItemIconSize + activityContent.spacing
|
||||
|
|
Loading…
Reference in a new issue