Thursday, June 19, 2025
2 changes · saas-18.1
Resolved issues and error corrections
The website mobile mega menu now uses the correct header background color instead of appearing transparent. This prevents the site logo from showing underneath the back arrow, improving the visual quality of mobile navigation.
Original PR description
Steps to reproduce: - Install the "Website" app. - Go to the homepage. - Click on "Site > Menu Editor" in the backend navbar. - Create a submenu. - Add a "Mega Menu Item" to the menu. - Save the dialog. - Enter edit mode. - Click on the header. - Select the "sidebar" template in the options. - Open the "Mega Menu". - Bug -> the website logo is visible under the left arrow icon. The bug has appeared since commit [1], where an "inherit" value was added to the background color property of the mega menu nav. The goal was to apply the header's background color to the mega menu nav, but the chosen method was incorrect. Indeed, "inherit" only takes the background color from the immediate parent, and does not search up the tree until it finds one with a defined background color. In this case, since the parent had no background color set, the value ends up as "transparent". [1]: https://github.com/odoo/odoo/commit/b975377fe688f10497b75598c0c50bd7b0758367
A failing automated test in the Product module was corrected by giving the test user the required unit of measure permission. This helps keep nightly quality checks stable without changing customer-facing product behavior.
Original PR description
The ``test_supplierinfo_without_uom_and_product_template`` test is failing in the single app tests on runbot nightly builds. error: ``` AssertionError: 'product_uom_id' was not found in the view ``` The issue is that the ``product_uom_id`` field is included in the view with the ``uom.group_uom`` group. However, the test case does not assign the ``uom.group_uom`` group to the user. This commit fixes tests failure caused by https://github.com/odoo/odoo/pull/213497 runbot-226816 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr