Wednesday, July 9, 2025
3 changes · 17.0
Resolved issues and error corrections
Mobile dialog headers no longer use back-end theme colors that could appear unexpectedly on the website. This keeps front-end popups visually consistent for visitors across Odoo versions.
Original PR description
Before this PR: header color of `Dialog` on mobile was "community color" or white, depending on the version of Odoo the database is running. This was creating issues in in the front-end, where the user of the website would see back-end specific colors in different `Dialog`s. This PR removes the color customization of `Dialog`'header as it was fitting a design line we had before we introduced MILK. task-4001365 Example of the issue (mobile front-end): <img width="376" alt="Screenshot 2024-06-20 at 10 54 04" src="https://github.com/odoo/odoo/assets/110090660/dad6a4b2-6164-45dd-9e16-0160e2989607"> --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo now hides star and mark-as-read actions on temporary live chat messages that are not yet saved. This prevents users from triggering errors when interacting with chatbot messages in active, non-persisted conversations.
Original PR description
**Before this PR:** the toggle-star and mark-as-read actions were visible on chatbot messages in a non-persisted livechat thread. Clicking these actions caused errors. This PR hides these actions when the thread is in a non-persisted state, preventing such errors. task-[4743758](https://www.odoo.com/odoo/project/1519/tasks/4743758)
This fix prevents older odometer records from being reassigned when a vehicle gets a new driver. Fleet managers can rely on odometer history to show the driver who was responsible at the time each reading was recorded.
Original PR description
In this bug, if a new driver is added the odometer driver is reset to the new driver. To reproduce the bug: 1- Create a db with fleet installed. 2- Create a vehicle with a driver set to user1 3- Add an odometer 4- Change the driver to user2 5- Add an odometer 6- You can see the prev odometer driver is set to user1 The bug is currently on verion 17.0, 18.0, saas-18.1 This bug is already fixed on version 18.2 but with no test opw-4910037