Friday, September 20, 2024
4 changes · master
Resolved issues and error corrections
The website cover section now uses a safer background color setting so text remains readable across themes and industries. This helps visitors clearly read cover content regardless of the selected design theme.
Original PR description
This commit fixes a readability issue on the `s_cover` snippet. - requires https://github.com/odoo/design-themes/pull/917 Prior to this commit, the background was set to `o_cc4` which was quite arbitrary, but could also create readability issues in some case. As the image has a black filter on top of it, setting the `o_cc` class to `o_cc5` will ensure a readable text no matter the theme/industry. task-4190912 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The website key benefits section now uses a layout that aligns more consistently with other page sections. This helps prevent visual spacing issues, especially when pages are viewed on different screen sizes.
Original PR description
This PR aims to switch the layout mode of the `s_key_benefits` snippet to Columns. - requires https://github.com/odoo/design-themes/pull/925 Prior to this commit, the `s_key_benefits` snippet was using the Grid mode, which was leading to some misalignment with other snippet. We could have set the `--grid-item-padding-x` to 0px, but this would have led to another issue as we don't handle the `grid-item-padding-x` in mobile. To prevent these issues, we switch the layout mode to Columns. task-4188740 part of task-4077427 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The purchase portal now shows wording that better matches what users actually experience. The URL box has also been repositioned under the second heading, making the page easier to follow for portal users.
Original PR description
In this PR: 1. The message displayed to user has been modified to better reflect the current behavior. 2. URL box position has been changed to be under the second heading. task-4191851 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change prevents spreadsheet lists from triggering a slow error path while data is still loading. Users should see smoother performance when opening or refreshing spreadsheet views that include lists, with no change to visible functionality.
Original PR description
This `if` is meant to detect when the list is loading and return the error instead of throwing it (throwing is slow) ...except `toString` throws if the value is an error :man_facepalming: Issue introduced with 5b6c2f7589131c59fdd27368aaf1fbb79bdd9b55 Task: 4199066 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr