Description
We faced a BITV issue (german wcag). The link/button to edit the location of a new article has no description. We fixed it this way:
// link to edit the location of a new article has no description try { let locationEdit_href = document.querySelector("a.location-action.location-action-edit"); locationEdit_href.setAttribute('title', 'Den Speicherort für den neuen Artikel bearbeiten'); locationEdit_href.setAttribute('aria-label', 'Den Speicherort für den neuen Artikel bearbeiten'); } catch (e) { console.log('link to edit the location of a new article not found') };