Skip to content

Commit c578fc6

Browse files
Alex Skrypnykenzolutions
authored andcommitted
Fixed block template using incorrect item and sequence order in 'for' loop. (#4175)
1 parent f82883c commit c578fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/module/templates/plugin-block-html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'clear-both',
1313
] %}" }}
1414
<div{{ '{{' }} attributes.addClass(classes) {{ '}}' }}>
15-
{{ '{% for content in value %}' }}
15+
{{ '{% for value in content %}' }}
1616
{{ '<p>{{value}}</p>' }}
1717
{{ '{% endfor %}' }}
1818
</div>

0 commit comments

Comments
 (0)