Thursday, February 13, 2025
2 changes
Features or functions removed from Odoo
This update removes an unnecessary automatic tour setting from guided steps where it has no effect. It keeps internal tour behavior cleaner and helps avoid confusion in automated or interactive walkthrough definitions, with no expected change for regular users.
Original PR description
isActive: ["auto"] doesn't make sense with the "run" function in a step because tour_interactive doesn't take into account steps without the "run" function. So, in this commit, we remove all isActive: ["auto"] for steps where there is no "run" function. 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 removes unused automatic activation markers from guided tour steps that do not perform an action. It reduces confusing configuration in product walkthroughs and helps keep internal tour behavior consistent without changing user-facing features.
Original PR description
isActive: ["auto"] doesn't make sense with the "run" function in a step because tour_interactive doesn't take into account steps without the "run" function. So, in this commit, we remove all isActive: ["auto"] for steps where there is no "run" function.