Browse Source

Oct 14: [FIX] Bug Fixed 'chat_quick_reply'

pull/347/head
Cybrosys Technologies 6 months ago
parent
commit
b3c53c6005
  1. 2
      chat_quick_reply/__manifest__.py
  2. 5
      chat_quick_reply/doc/RELEASE_NOTES.md
  3. 2
      chat_quick_reply/static/src/core/web/messaging_menu.xml

2
chat_quick_reply/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': 'Chat Quick Reply',
'version': '17.0.1.0.0',
'version': '17.0.1.0.1',
'category': 'Extra Tools',
'summary': """To reply to the chat from the Notification itself.""",
'description': "This module to reply to chat from the Notification itself.",

5
chat_quick_reply/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 17.0.1.0.0
##### ADD
- Initial commit for Chat Quick Reply
#### 14.10.2024
#### Version 17.0.1.0.1
##### BUGFIX
- Fixed issues in template

2
chat_quick_reply/static/src/core/web/messaging_menu.xml

@ -2,7 +2,7 @@
<!-- Inherited MessagingMenu template for adding the reply button -->
<templates xml:space="preserve">
<t t-inherit="mail.MessagingMenu.content" t-inherit-mode="extension">
<xpath expr="//NotificationItem[@body='message?.inlineBody']" position="after">
<xpath expr="//NotificationItem[@body='message?.inlineBody or message?.subtype_description']" position="after">
<t t-if="message" t-set-slot="icon">
<t t-if="thread.type ==='chat' and !message.isSelfAuthored">
<div class="d-flex flex-column flex-grow-1 align-self-start "

Loading…
Cancel
Save