Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit

Permalink
Fix dom diffing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit committed Feb 23, 2022
1 parent 95f969b commit 7b06700
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/actionables-manager.blade.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@livewire('tall-interactive::actionables-manager')
@livewire('tall-interactive::actionables-manager', key('Unique'))
2 changes: 1 addition & 1 deletion resources/views/components/modal.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@endphp

<div>
@livewire('tall-interactive::modal', $parameters)
@livewire('tall-interactive::modal', $parameters, key($parameters['id']))
</div>


2 changes: 1 addition & 1 deletion resources/views/components/slide-over.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@endphp

<div>
@livewire('tall-interactive::slide-over', $parameters)
@livewire('tall-interactive::slide-over', $parameters, key($parameters['id']))
</div>


2 changes: 1 addition & 1 deletion resources/views/livewire/modal.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
][$maxWidth];
@endphp

<div class="relative z-[999]" wire:key="{{ $actionableId }}">
<div class="relative z-[999]">
{{-- Modal --}}
<div class="fixed z-10 inset-0 overflow-y-auto" aria-labelledby="modal-title" role="dialog" aria-modal="true" x-cloak
x-data="{ state: $wire.entangle('actionableOpen') }" :class="state ? 'pointer-events-auto' : 'pointer-events-none'">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/slide-over.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
][$maxWidth];
@endphp

<div class="relative z-[999]" wire:key="{{ $actionableId }}">
<div class="relative z-[999]">
{{-- Slide-over --}}
<div class=" fixed inset-0 overflow-hidden" aria-labelledby="slide-over-title" role="dialog" aria-modal="true" x-cloak
x-data="{ state: $wire.entangle('actionableOpen') }"
Expand Down

0 comments on commit 7b06700

Please sign in to comment.