#62 - vacation request list for approvers #69

Merged
Baakoma merged 29 commits from #62-vacation-request-list-for-approvers into main 2022-03-08 09:25:24 +01:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit 78d209dc3e - Show all commits

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