Disable ajax for export template forms

The actions of these forms have dedicated event listeners.

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
This commit is contained in:
Maurício Meneghini Fauth 2025-08-31 10:03:45 -03:00
parent 554e51aa4a
commit b8bea16cb9
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -15,7 +15,7 @@
<div class="card mb-3">
<div class="card-header">{{ t('Export templates:') }}</div>
<div class="card-body row gy-3">
<form method="post" action="{{ url('/export/template/create') }}" class="col-12 col-md ajax">
<form method="post" action="{{ url('/export/template/create') }}" class="col-12 col-md disableAjax">
<fieldset>
<legend>{{ t('New template:') }}</legend>
<div class="row g-3 align-items-center">
@ -32,7 +32,7 @@
</fieldset>
</form>
<form method="post" id="existingTemplatesForm" class="col-12 col-md ajax">
<form method="post" id="existingTemplatesForm" class="col-12 col-md disableAjax">
<fieldset>
<legend>{{ t('Existing templates:') }}</legend>
<div class="row g-3 align-items-center">