fix(@desktop/chat): remove invalid argument from `showReplyArea`
- call arguments didn't match with prototype fixes: #6407
This commit is contained in:
parent
819d210ab8
commit
13cfe18665
|
@ -64,7 +64,7 @@ ColumnLayout {
|
||||||
if(root.height > 0) {
|
if(root.height > 0) {
|
||||||
chatInput.forceInputActiveFocus()
|
chatInput.forceInputActiveFocus()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Keys.onEscapePressed: { topBar.toolbarComponent = statusChatInfoButton }
|
Keys.onEscapePressed: { topBar.toolbarComponent = statusChatInfoButton }
|
||||||
|
|
||||||
|
@ -412,7 +412,7 @@ ColumnLayout {
|
||||||
if (!obj) {
|
if (!obj) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
chatInput.showReplyArea(messageId, obj.senderDisplayName, obj.messageText, obj.senderIcon, obj.contentType, obj.messageImage, obj.sticker)
|
chatInput.showReplyArea(messageId, obj.senderDisplayName, obj.messageText, obj.contentType, obj.messageImage, obj.sticker)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -440,7 +440,7 @@ ColumnLayout {
|
||||||
if (!obj) {
|
if (!obj) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
chatInput.showReplyArea(messageId, obj.senderDisplayName, obj.messageText, obj.senderIcon, obj.contentType, obj.messageImage, obj.sticker)
|
chatInput.showReplyArea(messageId, obj.senderDisplayName, obj.messageText, obj.contentType, obj.messageImage, obj.sticker)
|
||||||
}
|
}
|
||||||
onOpenStickerPackPopup: {
|
onOpenStickerPackPopup: {
|
||||||
root.openStickerPackPopup(stickerPackId);
|
root.openStickerPackPopup(stickerPackId);
|
||||||
|
|
Loading…
Reference in New Issue