Thursday, May 4, 2023
2 changes · master
Resolved issues and error corrections
This fix adjusts the mail chatter test setup so edited messages keep the expected layout when their styling changes. It helps ensure message lists continue to scroll correctly, reducing the risk of frustrating navigation issues in customer communications.
Original PR description
Lack of "p" tag in the message body in chatter test changes the size of message and its position relative to the view. Task-2664848 Related to this [PR](https://github.com/odoo/odoo/pull/117896)
Fixed an issue where embedded external records or links added to Knowledge articles could be lost when users clicked into them before the article was saved. The article now correctly detects these edits and saves them, improving reliability for Knowledge and Helpdesk content updates.
Original PR description
This commit fixes a bug where external insertion inside an article would not be saved if you clicked on a record inside the view or opened the link. This is caused because the article was not flagged as dirty when opening either a record or a link which does not trigger a save by the field html. Now when we are finished inserting we are asking the record to check for changes which will flag the field as dirty and will trigger the save mechanism on opening an external record/link. We also adapted one of the tour in website_helpdesk_knowledge that test cross module features or knowledge to take this behavior into account. task-3292309