Wednesday, February 5, 2025
5 changes · saas-18.1
Resolved issues and error corrections
This fix keeps customer action buttons accessible in Point of Sale even when a customer name or details are very long. It improves the customer selection popup layout so staff can continue serving customers without the interface breaking or hiding key actions.
Original PR description
Handle case where customer name is too long causing the customer action buttons inaccessible. - Put `width` and `text-break` on partner name column. - Enable overflow-x on the partner modal (so that if the partner infos are too long, its buttons are still accessible). - Remove weird left/right border on partner line inside customer popup. task-id: 4547853 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Project task list now lets the system automatically size the task ID column instead of using a fixed narrow width. This prevents IDs from becoming hidden or unreadable when there are many tasks or when users sort by ID.
Original PR description
Before this commit, the column of task id displayed in list view of all tasks menu is too small when there are many tasks stored in DB. Moreover, if the user wants to sort the tasks by ID, the column collapses. This commit reverts the hardcoded size set on that column to let the framework computes the column size. Steps to reproduce the issue: ---------------------------- 1. Create a good amount of task (over 1000) 2. Go to Projects > Tasks > All tasks 3. Display the ID column in the list view. 4. Sort by ID Expected Behavior ----------------- The content of the column should still be visible. Current Behavior ---------------- The column size is recomputed and the size is too small to directly see its content. opw-4524749
The Tags field now suppresses the browser's built-in autocomplete suggestions so they no longer overlap Odoo's own dropdown. This restores the previous behavior and makes selecting existing tags clearer for users.
Original PR description
Steps: - Open a task - Click on "Tags" field input Actual result: - Autocomplete is there and can hide dropdown (partially or fully)  Expected result: - Autocomplete is really off by default for many2x field - No autocompletion like before 18.1, we already have one as it's a dropdown opw-4551051 Caused by: https://github.com/odoo/odoo/commit/9c0f5612e9fab514116e2385338d8fc1ce42b821
Message highlighting in Mail is now easier to see, including in dark mode. The update replaces a disruptive visual effect with a clearer highlight animation, making selected messages stand out without reducing the readability of surrounding messages.
Original PR description
The current message highlight isn't really visible in dark mode. It's also not really visible at all, and it "breaks" the UI by making the other messages a bit less visible. This PR removes the translation and creates a highlight animation. Task-4543530 
The Helpdesk ticket list no longer forces the ticket reference column into a very narrow width. This lets longer ticket numbers display more clearly, making it easier for support teams to identify the right tickets.
Original PR description
Before this commit, the column of ticket ref field displayed in the list view of `helpdesk.ticket` has a size set to 30px. That hardcoded size makes the visibility of the content inside that column harder when the reference contains more than 6 digits. This commit removes the hardcoded size to let the framework computes the column size as before. opw-4524749