mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 14:05:58 +03:00
Fix 'TypeError: Cannot readproperty 'messageSent' of undefined'.
Signed-off-by: Camila <hello@camila.codes>
This commit is contained in:
parent
084fdc0cc0
commit
2fa834446a
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