From 42e41edf505005c0d275bf0cca3f276fc2c5b307 Mon Sep 17 00:00:00 2001 From: Bryant Dinh Date: Mon, 29 Apr 2024 16:22:36 -0700 Subject: [PATCH] fix: missing comma and order of params passed into Apline. --- resources/views/livewire/dropzone.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/dropzone.blade.php b/resources/views/livewire/dropzone.blade.php index 30cdcf3..f0a48ba 100644 --- a/resources/views/livewire/dropzone.blade.php +++ b/resources/views/livewire/dropzone.blade.php @@ -2,7 +2,7 @@ x-cloak x-data="dropzone({ _this: @this, - uuid: @js($uuid) + uuid: @js($uuid), multiple: @js($multiple), })" @dragenter.prevent.document="onDragenter($event)" @@ -118,7 +118,7 @@ class="dz-hidden" @script