Wednesday, April 16, 2025
2 changes · master
Resolved issues and error corrections
This update adjusts Odoo spreadsheet features to stay compatible with recent spreadsheet engine changes. It improves chart, pivot table, comments, and field synchronization behavior, including restoring scrolling in read-only pivot panels.
Original PR description
This commit contains adaptations following the o-spreadsheet update. See https://github.com/odoo/odoo/pull/206102
Fixed an issue in Documents where duplicating a selected document could make the browser tab stop responding. The selection now stays focused correctly after duplication, improving reliability for users working with documents.
Original PR description
Reproduce: 1. Open Documents 2. Select a document 3. Duplicate it 4. Close your now non-responsive tab... Updating a state inside onWillUpdateProps triggered a new rendering cycle, where the `list` prop was different each time, and thus looped. Also, we do not change folder (after duplication for example), we must keep focus on the selection and not switch to the containing folder. Task-4717552