Fix Stages page Lifecycle image and populate Stages in time for the Mautic 7.2 UI - #960
Merged
adiati98 merged 1 commit intoSep 6, 2026
Conversation
The Lifecycle dashboard widget image showed the two Segments side-by-side, but in the Mautic 7.2 UI the widget's flex-column body stacks the two Segments vertically. Replace lifecycle.png with a version-matched stacked capture. Also replace the near-empty stage_dashboard.png with a populated 'Stages in time' capture showing real stage-change data. Image-only change.
adiati98
approved these changes
Sep 6, 2026
Contributor
Author
|
Just a reminder: I review PR comments by default. If you want me to ignore a specific comment, start it with |
promptless-for-oss
deleted the
promptless/issue-478-update-stages-images-7.2
branch
September 6, 2026 17:11
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.
Open in Promptless
On branch 7.2, the Stages page Lifecycle dashboard widget image (
docs/stages/images/lifecycle.png) showed the two Segments side-by-side, but in the Mautic 7.2 UI the dashboard widget's flex-column body stacks the two Segments vertically. This replaceslifecycle.pngwith a version-matched capture showing the correct stacked layout. It also replaces the near-emptystage_dashboard.png("Stages in time" widget) with a populated capture showing real stage-change data across the default one-month dashboard range. Image-only change: no prose, headings, or step numbering instages.rstchanged.Companion to PR #884 (branch 7.0) and PR #959 (branch 7.1). The Lifecycle widget template (
lifecycle.html.twig) is byte-identical across 6.0/7.0/7.1/7.2 and lays each Segment out asfloat: left; width: 50%. The dashboard widget body container differs: Mautic 6.0 uses a plain block (<div class="card-body">) so the Segments float side-by-side, whereas Mautic 7.0/7.1/7.2 use a flex column (<div class="card-body d-flex fd-column fg-1">), which ignores the float and stacks the Segments vertically. So the stacked capture is the correct 7.2 UI.Trigger Events