Tuesday, June 22, 2021
3 changes · master
Resolved issues and error corrections
Fixes a problem in the debug menu where choosing to disable active guided tours could crash the page. The change sends the correct tour identifiers, making this developer/debug action work reliably without interrupting the user session.
Original PR description
In the debug menu, when there is at least a tour "alive", click on "Disable tours". Before this commit, it crashed because we sent the whole tour description as argument to the consume method. Issue reported on the wowl-bugs pad. 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 fixes a crash that could occur when users exported data to Excel from a form view. The export process now works as expected by removing an outdated leftover parameter from earlier cleanup work.
Original PR description
In commit adf34b9001eb34e, we remove unused token param. These token's parameters are still a leftover of the previous cleaning. This commit fixes the export in Xls in view form that crash with: TypeError: index() missing 1 required positional argument: 'token' 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 fixes an issue where actions opened in pop-up dialogs could unexpectedly change the browser page title. The main page title now stays stable when users work in dialogs, reducing confusion and keeping navigation context clear.
Original PR description
Before this commit, all actions, even those executed in target "new" (i.e. in dialogs) updated the document's title. Actions in dialog should not do that. 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