Daily updates from Odoo
Thursday, June 22, 2023
2 changes
Resolved issues and error corrections
This update fixes the Knowledge editor helper so users can create a new article from its prompt when no articles exist. It also improves the mobile layout so the helper no longer blocks the sidebar, making navigation usable on phones.
Original PR description
This PR will address to following issues with the action helper of the Knowledge editor: 1. The link that allows users to create a new article from the action helper is currently broken: When the user clicks on it, nothing happens. This PR will address that issue by attaching to that link a listener that will allow the creation of an article. 2. On mobile devices, the action helper currently appears above the sidebar which makes some items of the sidebar unreachable. This commit will address that issue by updating the z-index of the different layers. Reference: https://github.com/odoo/enterprise/pull/34788 task-3367208
Users can now add or remove tags when working with one selected document. This fixes a workflow issue where tag changes appeared to do nothing, making document organization more reliable.
Original PR description
Before this commit: Select a document and try to add/remove a tag. Nothing happens and we are unable to add/remove the tag. Reason: Before any changes are updated, we call the '_save' method. And hence, the issue. After this commit: As a result, we are now able to add or remove tags to a single document. task-3299003