Problem/Motivation
Paragraph summaries don't show. The issue was introduced along with the changes in #3601861: Automated Drupal 12 compatibility fixes for paragraphs 1.x-dev
Steps to reproduce
The .module file code contains this:
function template_preprocess_paragraphs_summary(&$variables) {
\Drupal::service(ParagraphsThemeHooks::class)->preprocessParagraphsActions($variables);
}
But it should be this:
function template_preprocess_paragraphs_summary(&$variables) {
\Drupal::service(ParagraphsThemeHooks::class)->preprocessParagraphsSummary($variables);
}
My paragraph summaries don't show on the most recent release.
Proposed resolution
Remaining tasks
User interface changes
API changes
Data model changes
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | paragraphs-3614739-m274.diff | 617 bytes | solideogloria |
Issue fork paragraphs-3614739
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
solideogloria commentedComment #4
berdirStrange that previous major tests didn't catch this or did I not run them anymore in the end?
Comment #5
harkonn commentedI can't answer your question @berdir, just a reminder that you mentioned not running some in #3601861-8: Automated Drupal 12 compatibility fixes for paragraphs 1.x-dev.
Can we please get a bugfix release for this? :)
Edit: Forgot to mention the fix is working as desired for me in 10.6.14.
Comment #6
solideogloria commentedPatch for ease of use in composer.patches.json.
Comment #8
berdiryes, but I definitely did run previous major tests at some point, but apparently not anymore after certain changes, awkward. Merged.