Skip to content

Commit 1c25677

Browse files
committed
fix: fix formatting with trailing space
1 parent b40227a commit 1c25677

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

templates/v3/includes/_field_file.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
<div class="field field--file{% if error %} field--error{% endif %}{% if extra_class %} {{ extra_class }}{% endif %}"
2020
{% if alpine_error %}:class="{ 'field--error': {{ alpine_error }} }"{% endif %}
2121
{# djlint:off #}
22-
x-data="{
23-
jsReady: false,
22+
x-data="{
23+
jsReady: false,
2424
fileName: ''{% if preview %}, previewUrl: ''{% endif %} }"
2525
x-init="
2626
jsReady = true;
2727
const form = $el.closest('form');
2828
if (form) form.addEventListener('reset', () => {
2929
fileName = '';
3030
{% if preview %}
31-
if (previewUrl) {
32-
URL.revokeObjectURL(previewUrl);
31+
if (previewUrl) {
32+
URL.revokeObjectURL(previewUrl);
3333
previewUrl = '';
3434
}
3535
{% endif %}

0 commit comments

Comments
 (0)