Friday, June 27, 2025
2 changes · saas-18.1
Resolved issues and error corrections
This fix makes automated checks for starred messages more reliable by exposing the message's starred status directly in the page structure. It reduces false test failures in the mail area without changing the user experience.
Original PR description
Before this commit, test "test_star_message" was failing frequently on runbot at step to check message was starred have click on "Mark as Todo". This happens because when click on mark as todo, the message is asynchronously starred. However, there's no visual indication other than the message action have yellow filled star icon. This requires hovering the message to see it, but we don't know when we should exactly hover the message to see it. This commit fixes the issue by adding a `data-starred` on the `o-mail-Message` root node of message template that tells whether the message is starred or not. This removes necessity to hover to check whether message is starred. Fixes runbot-227568
When a subthread is created from a message that has been deleted, it now receives a clear placeholder name instead of appearing blank. This prevents confusion in discussions and makes conversation navigation more reliable for users.
Original PR description
**Current behavior before PR:** Prior to this PR, when a subthread was created from a deleted message, the thread name appeared empty. **Desired behavior after PR is merged:** the issue is resolved by setting the thread name to "New Thread" when the original message is deleted. task-4665143 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr