Make table bar clickable

This commit is contained in:
BlossomiShymae
2024-05-03 08:28:55 -05:00
parent b48d516bbe
commit c6306b073d
4 changed files with 8 additions and 8 deletions

View File

@@ -13,9 +13,9 @@
</tr>
</thead>
<tbody>
<tr v-for="item in items" :key="item.id">
<tr v-for="item in items" :key="item.id" style="position: relative;">
<th scope="row">
<NuxtLink class="text-decoration-none text-light" :to="`/items/overview/${item.id}`">
<NuxtLink class="text-decoration-none text-light stretched-link" :to="`/items/overview/${item.id}`">
{{ item.id }}
</NuxtLink>
</th>