Skip to content

Commit e85c6df

Browse files
authored
add helptext to dynamic mult file, fixes #308 (#322)
1 parent 905e60c commit e85c6df

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

UPGRADE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- **[BUGFIX]**: introduce output workflow signals: attachments not working with multiple channels [#311](https://github.com/dachcom-digital/pimcore-formbuilder/issues/311)
88
- **[BUGFIX]**: fix typo in translation [#312](https://github.com/dachcom-digital/pimcore-formbuilder/issues/312)
99
- **[BUGFIX]**: disable `selectOnFocus` [#315](https://github.com/dachcom-digital/pimcore-formbuilder/issues/315)
10+
- **[BUGFIX]**: ⚠️ add help text block to dynamic multi file. touched view: `form/theme/type/dynamic_multi_file.html.twig` [#308](https://github.com/dachcom-digital/pimcore-formbuilder/issues/308)
1011
- **[BUGFIX]**: ⚠️ multi file upload: hidden type `_data` not in form row. touched view: `form/theme/type/dynamic_multi_file.html.twig` [#316](https://github.com/dachcom-digital/pimcore-formbuilder/issues/316)
1112

1213
## Version 4.0.2

src/FormBuilderBundle/Resources/views/form/theme/type/dynamic_multi_file.html.twig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
{{- form_row(child) -}}
1919
{% endif %}
2020
{%- endfor -%}
21+
{% if help_text %}
22+
{{ block('help_text_label') }}
23+
{% endif %}
2124
</div>
2225
{% endapply %}
2326
{% endblock %}
@@ -34,6 +37,9 @@
3437
{{- form_row(child) -}}
3538
{% endif %}
3639
{%- endfor -%}
40+
{% if help_text %}
41+
{{ block('help_text_label') }}
42+
{% endif %}
3743
</div>
3844
{% endapply %}
3945
{% endblock %}

0 commit comments

Comments
 (0)