This commit is contained in:
Adrian Hopek 2022-03-07 14:08:40 +01:00
parent 937d9572a7
commit 78d209dc3e
2 changed files with 10 additions and 2 deletions

View File

@ -74,7 +74,7 @@
<tr
v-for="request in requests.data"
:key="request.id"
class="hover:bg-blumilk-25"
class="hover:bg-blumilk-25 relative"
>
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
<InertiaLink
@ -106,6 +106,10 @@
>
<ChevronRightIcon class="block w-6 h-6 fill-blumilk-500" />
</InertiaLink>
<InertiaLink
:href="`/vacation-requests/${request.id}`"
class="absolute inset-0"
/>
</td>
</tr>
<tr

View File

@ -220,7 +220,7 @@
<tr
v-for="request in requests.data"
:key="request.id"
class="hover:bg-blumilk-25"
class="hover:bg-blumilk-25 relative"
>
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
<InertiaLink
@ -268,6 +268,10 @@
>
<ChevronRightIcon class="block w-6 h-6 fill-blumilk-500" />
</InertiaLink>
<InertiaLink
:href="`/vacation-requests/${request.id}`"
class="absolute inset-0"
/>
</td>
</tr>
<tr