Skip to content

Commit

Permalink
Do not use turbo for importing/exporting themes
Browse files Browse the repository at this point in the history
  • Loading branch information
zoglo committed Feb 20, 2025
1 parent 57ca66b commit 77cc4f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contao/templates/backend/import.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<div class="tl_formbody_edit">
{% if partial %}
<form id="{{ form.id }}" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data">
<form id="{{ form.id }}" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data" data-turbo="false">
<input type="hidden" name="FORM_SUBMIT" value="{{ form.id }}_partial">
<input type="hidden" name="REQUEST_TOKEN" value="{{ form.rt }}">

Expand Down Expand Up @@ -59,7 +59,7 @@
</div>
</form>
{% else %}
<form id="{{ form.id }}" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data">
<form id="{{ form.id }}" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data" data-turbo="false">
<input type="hidden" name="FORM_SUBMIT" value="{{ form.id }}">
<input type="hidden" name="REQUEST_TOKEN" value="{{ form.rt }}">
<input type="hidden" name="MAX_FILE_SIZE" value="{{ form.maxFileSize }}">
Expand All @@ -82,7 +82,7 @@
</div>
</div>
</form>
<form id="{{ form.id }}_bundle" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data">
<form id="{{ form.id }}_bundle" class="tl_form tl_edit_form" method="post" enctype="multipart/form-data" data-turbo="false">
<input type="hidden" name="FORM_SUBMIT" value="{{ form.id }}_bundle">
<input type="hidden" name="REQUEST_TOKEN" value="{{ form.rt }}">
<div class="tl_tbox sm-bt">
Expand Down

0 comments on commit 77cc4f6

Please sign in to comment.