mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 23:11:54 +00:00
Removed tabindices for non-interactive elements
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user