Monday, July 13, 2026
2 changes · saas-18.2
Resolved issues and error corrections
Users can now create links inside text with custom font sizing without triggering an error. This keeps the editor workflow smooth and preserves the intended text styling when adding links.
Original PR description
Problem: When creating a link inside a fontwrapper using the `/link` command, a traceback occurs. Cause: When the selection is collapsed, `selection.getSelectedNodes();` returns an empty array. This throws a traceback since `split.splitAroundUntil` expects at least one element as parameter. Solution: Create a temporary `feff` and use it for `split.splitAroundUntil` to ensure the new link is created with the proper styling. Steps to reproduce: 1. Add text. 2. Change font size. 3. Use `/link` command within the font size text. 4. Add label and url. 5. Apply. 6. Traceback occurs. opw-5086762 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The link popover now shows the current file title after a user renames an uploaded file. This prevents confusion by keeping the displayed link information aligned with the latest file name.
Original PR description
Problem: After updating a file name, the link popover still shows the original file name. Cause: The link popover always displays the attachment name instead of the current link content. Solution: Use the link content as the popover title so it reflects the updated file title. Steps to reproduce: - Go to To-Do → Create New. - Upload a file. - Change its title. - Observe that the title shown in the link popover still uses the original file name. task-6213840 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#264127