Skip to content

Commit 903d84e

Browse files
committed
fix: confirmation text could be empty, then skip that part
fix: confirmation modal should not be closed by clicking away
1 parent 16ccc87 commit 903d84e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/components/modal-confirmation.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ class="relative w-auto h-auto">
151151
@endif
152152
@endif
153153
<template x-teleport="body">
154-
<div x-show="modalOpen" @click.away="modalOpen = false; resetModal()"
154+
<div x-show="modalOpen"
155155
class="fixed top-0 lg:pt-10 left-0 z-[99] flex items-start justify-center w-screen h-screen" x-cloak>
156-
<div x-show="modalOpen" @click="modalOpen = false; resetModal()"
156+
<div x-show="modalOpen"
157157
class="absolute inset-0 w-full h-full bg-black bg-opacity-20 backdrop-blur-sm"></div>
158158
<div x-show="modalOpen" x-trap.inert.noscroll="modalOpen" x-transition:enter="ease-out duration-100"
159159
x-transition:enter-start="opacity-0 -translate-y-2 sm:scale-95"
@@ -222,7 +222,7 @@ class="flex absolute top-2 right-2 justify-center items-center w-8 h-8 rounded-f
222222
</template>
223223
@endforeach
224224
</ul>
225-
@if ($confirmWithText)
225+
@if ($confirmWithText && $confirmationText)
226226
<div class="mb-4">
227227
<h4 class="mb-2 text-lg font-semibold">Confirm Actions</h4>
228228
<p class="mb-2 text-sm">{{ $confirmationLabel }}</p>
@@ -309,7 +309,7 @@ class="w-24 dark:bg-coolgray-200 dark:hover:bg-coolgray-300">
309309
</template>
310310

311311
<template x-if="step === 2">
312-
<x-forms.button x-bind:disabled="confirmWithText && userConfirmationText !== confirmationText"
312+
<x-forms.button x-bind:disabled="confirmationText !== '' && confirmWithText && userConfirmationText !== confirmationText"
313313
class="w-auto" isError
314314
@click="
315315
if (dispatchEvent) {

0 commit comments

Comments
 (0)