Friday, June 16, 2023
6 changes · master
Resolved issues and error corrections
Short mail and live chat conversations now appear anchored near the bottom of the thread area instead of floating awkwardly at the top. This makes sparse conversations feel more natural and consistent for users, especially in public live chat windows.
Original PR description
Before / After <img width="365" alt="before" src="https://github.com/odoo/odoo/assets/6569390/96660d0e-37a6-45c8-9b48-74032cc100c4"> <img width="363" alt="after" src="https://github.com/odoo/odoo/assets/6569390/7e462ed5-6a32-4b9a-b009-4eeda825200d"> Taking into account public livechat too: <img width="361" alt="public-livechat" src="https://github.com/odoo/odoo/assets/6569390/bb674721-6a8a-458e-aded-17ccecf78cb0">
This fixes an issue where parent messages could appear as plain text when users loaded messages around a specific point in a conversation. The change improves readability and keeps mail discussions consistently formatted.
Long department names in the HR app now display correctly instead of overflowing or being cut off awkwardly. This makes department information easier to read and keeps HR screens cleaner for users.
Original PR description
fix display of too long department names task 3360172
The Send button in the chatter now uses the correct visual style. This fixes a small display issue so users see a consistent and appropriate button appearance when composing messages.
Original PR description
Small mistake during forward-port of [1], `btn-link` was moved from `t-att-class` to `class`. The `btn-link` visual is specific to non-chatter, therefore it should be in `t-att-class`. [1] https://github.com/odoo/odoo/pull/124905
This fixes a duplicated Start Date field that appeared in subscription-related sales order forms. Users now see a cleaner form with less confusion when reviewing or editing subscription sales orders.
Original PR description
Since: #36968 the start_date field has been a duplicated field in SO view of sale_subscription. This PR remove the duplicate.
This fixes a crash in Odoo Studio that could happen after a user selected a newly added field and then clicked undo. Studio now handles the removed field safely, keeping the editing experience stable.
Original PR description
In Studio, if you perform an operation when focusing a node and as a result, the node disappears, it cause a crash. Steps to reproduce ------------------- - Create a new empty app - Drag & Drop a new field in the form view - Focus the new field - Click on undo Actual behaviour ----------------- - It crash because Studio tries to focus the deleted node Expected behaviour -------------------- - doesn't crash