Skip to content

Commit 293613f

Browse files
committed
fix funnel form theme path
1 parent 1dea7e5 commit 293613f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/OutputWorkflow/Funnel/10_FunnelLayer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ Formbuilder.extjs.formPanel.outputWorkflow.funnelLayer.dummyLayer = Class.create
134134

135135
#### Twig Partial
136136
```twig
137-
{% if formTheme is not null %}
138-
{% form_theme form with (formTheme ~ '.html.twig') only %}
137+
{% if formThemePath is not null %}
138+
{% form_theme form formThemePath %}
139139
{% endif %}
140140
141141
{% block funnel_content %}

src/FormBuilderBundle/Resources/views/funnel/layer/simple_layout_layer.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{% if formTheme is not null %}
2-
{% form_theme form with [formTheme ~ '.html.twig'] only %}
1+
{% if formThemePath is not null %}
2+
{% form_theme form formThemePath %}
33
{% endif %}
44

55
{% block funnel_content %}

0 commit comments

Comments
 (0)