mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Fixed assets view new items not screenreader navigable
This commit is contained in:
@@ -364,7 +364,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
if (tableBody) {
|
if (tableBody) {
|
||||||
const newRow = document.createElement('tr');
|
const newRow = document.createElement('tr');
|
||||||
newRow.innerHTML = `
|
newRow.innerHTML = `
|
||||||
<td>${jsonData.Owner || ''}</td>
|
<td tabindex="0">${jsonData.Owner || ''}</td>
|
||||||
<td>${result.assetId || ''}</td>
|
<td>${result.assetId || ''}</td>
|
||||||
<td>${jsonData.Name || ''}</td>
|
<td>${jsonData.Name || ''}</td>
|
||||||
<td>${jsonData.Location || ''}</td>
|
<td>${jsonData.Location || ''}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user