Thursday, May 19, 2022
3 changes · master
Resolved issues and error corrections
Technical hint text in settings pages now follows the same search filtering behavior as other settings content. This prevents irrelevant guidance from staying visible when users search settings, making results clearer and less confusing.
Original PR description
In the settings view, we need to display the technical tip below the setting header (h2 tag). For example, we display such tip under the 'Developer Accounts' header in social media settings. However,…
In the settings view, we need to display the technical tip below the setting header (h2 tag). For example, we display such tip under the 'Developer Accounts' header in social media settings. However, when we search something in the settings, this tip is not hidden. It happens because the hiding and showing parts of the settings page are managed with js using some special classes or tags (like h2 tag, `.o_setting_box` class etc). This commit fixes the issue by introducing a new class `.o_setting_tip` specific for such technical tips, and with help of that we now hide or show the tips based on the user search. Note: We could have used `.o_setting_box` without any side-effect, but rules linked to this class can be changed in the future and can mess with layout of the technical tips. enterprise PR - https://github.com/odoo/enterprise/pull/25907 task-2810617 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
This update adjusts terminology in the accounting dashboard to use clearer US English wording. It helps users better understand labels or messages without changing accounting features or workflows.
Original PR description
en_US police 👮
A technical hint in Social app settings could appear in the wrong place when users searched settings. This fix ensures the hint is hidden when appropriate and only appears in its intended location, reducing confusion for administrators.
Original PR description
Before this commit, a technical tip of social was displayed any where as 'o_hidden' class is not applied as the tool tip is defined in h3 tag. As 'o_hidden' class is not added in h3 element. With this commit we add 'o_setting_box' class in h3 element so that 'o_hidden' class is added whenever it is required. As we are adding 'o_hidden' class on 'o_setting_box' in base. Now, we will not get the technical tip anywhere else then it's original place. Community PR: https://github.com/odoo/odoo/pull/88117 TaskId-2810617