fix: [DHIS2-16363] Navigate to Schedule tab when creating event after stage complete - #4618
Merged
simonadomnisoru merged 3 commits intoJul 1, 2026
Conversation
… stage complete When confirming "create new event" after completing a stage, the navigation now includes tab=SCHEDULE so the new event workspace opens on the Schedule tab instead of defaulting to Report. AI Assisted
|
🚀 Deployed on https://deploy-preview-4618.capture.netlify.dhis2.org |
karolinelien
marked this pull request as ready for review
June 18, 2026 09:57
Contributor
|
Changes look sensible to me. Tagging frontend team for additional reinforcement. |
simonadomnisoru
approved these changes
Jun 23, 2026
simonadomnisoru
left a comment
Contributor
There was a problem hiding this comment.
Changes look sensible to me. Tagging frontend team for additional reinforcement. Also the tests failing.. but that might not be due to this PR?
Looks good now! The Cypress failures were related to this PR, and I've pushed a fix for them.
…w-schedule-tab-after-stage-complete # Conflicts: # i18n/en.pot
|
simonadomnisoru
deleted the
fix/DHIS2-16363-show-schedule-tab-after-stage-complete
branch
July 1, 2026 15:15
dhis2-bot
added a commit
that referenced
this pull request
Jul 1, 2026
## [106.6.1](v106.6.0...v106.6.1) (2026-07-01) ### Bug Fixes * [DHIS2-16363] Navigate to Schedule tab when creating event after stage complete ([#4618](#4618)) ([0cba9a3](0cba9a3))
Contributor
|
🎉 This PR is included in version 106.6.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



When a stage with "Ask user to create new event when stage is complete" is completed and the user
confirms they want to create a new event, they are navigated to the Report tab of the new event
workspace. The expected behaviour (per DHIS2-13801) is to land on the Schedule tab, since most users
want to schedule the follow-up rather than report immediately.
What is the fix?
In startCreateNewAfterCompletingEpic, tab: 'SCHEDULE' is added to the URL params when navigating to
/enrollmentEventNew. The NewEventWorkspace component already reads this param and initialises to the
correct tab — it was just never being passed.
Steps to verify
stage is complete" enabled (e.g. WHO RMNCH).
AI Assisted