Tuesday, November 11, 2025
1 change · saas-18.2
Resolved issues and error corrections
Long product attribute values now wrap correctly inside product cards instead of spilling outside the layout. This keeps catalog views in sales quotations clean and easier to read when products have lengthy attribute text.
Original PR description
**Steps to reproduce:** 1. Go to Products > Create a new product. 2. Add or create a new attribute and set a long text value. 3. Go to Sales > Open any quotation. 4. In the sale order line, click on…
**Steps to reproduce:** 1. Go to Products > Create a new product. 2. Add or create a new attribute and set a long text value. 3. Go to Sales > Open any quotation. 4. In the sale order line, click on "Catalog" and search for the created product. **Issue:** - The attribute value text overflows outside the product card in the kanban view, causing layout misalignment and making the UI look broken. <img width="509" height="157" alt="image" src="https://github.com/user-attachments/assets/a2af2c6d-9265-451c-9d1e-526df8487841" /> **Cause:** - The inner `<div>` containing the attribute text did not have a width constraint, causing it to exceed the container width when the text length was large. **Solution:** Added the Bootstrap class `w-100` to the <div> element to ensure the content fits within the parent container and wraps properly inside the card. <img width="322" height="166" alt="image" src="https://github.com/user-attachments/assets/5ba82207-7f52-4f9e-b400-e4ab4e79f0a0" /> **opw-5222002** Forward-Port-Of: odoo/odoo#234478