Removed tabindices for non-interactive elements

This commit is contained in:
2025-11-29 13:13:26 +01:00
parent 61e370600f
commit 8a8964a08c
5 changed files with 9 additions and 9 deletions

View File

@@ -40,7 +40,7 @@
foreach (LocationTableViewModel locationTableViewModel in Model.LocationTableViewModels)
{
<tr>
<td tabindex="0">@locationTableViewModel.LocationID</td>
<td>@locationTableViewModel.LocationID</td>
<td>@locationTableViewModel.LocationName</td>
<td>@locationTableViewModel.RoomNumber</td>
<td>@locationTableViewModel.Seat</td>
@@ -344,7 +344,7 @@
const tbody = document.querySelector('table tbody');
const newRow = document.createElement('tr');
newRow.innerHTML = `
<td tabindex="0">${slugifiedLocationID}</td>
<td>${slugifiedLocationID}</td>
<td>${newLoc.Location}</td>
<td>${newLoc.RoomNumber}</td>
<td>${newLoc.Seat}</td>