We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb696d8 commit ab9221cCopy full SHA for ab9221c
resources/views/livewire/card.blade.php
@@ -1,8 +1,9 @@
1
-@props(['config', 'card'])
+@props(['config', 'columnId', 'card'])
2
3
<div
4
x-sortable-handle
5
x-sortable-item="{{ $card['id'] }}"
6
+ x-on:click.stop="openEditModal({{ $card['id'] }}, '{{ $columnId }}')"
7
class="bg-white dark:bg-gray-700 rounded-md shadow-sm mb-2 p-3 transition-all duration-200 hover:shadow-md hover:-translate-y-[2px]"
8
>
9
<div class="text-sm font-medium text-gray-900 dark:text-white mb-1">{{ $card['title'] }}</div>
0 commit comments