Make Q/A issue links focusable (re: #8004)

This commit is contained in:
Quincy Morgan
2020-10-01 11:36:46 -04:00
parent edb6ad00b8
commit 118a91ea33
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -53,6 +53,7 @@ export function uiImproveOsmDetails(context) {
// If there are entity links in the error message..
let relatedEntities = [];
descriptionEnter.selectAll('.error_entity_link, .error_object_link')
.attr('href', '#')
.each(function() {
const link = d3_select(this);
const isObjectLink = link.classed('error_object_link');
+1
View File
@@ -58,6 +58,7 @@ export function uiKeepRightDetails(context) {
// If there are entity links in the error message..
let relatedEntities = [];
descriptionEnter.selectAll('.error_entity_link, .error_object_link')
.attr('href', '#')
.each(function() {
const link = d3_select(this);
const isObjectLink = link.classed('error_object_link');
+1
View File
@@ -139,6 +139,7 @@ export function uiOsmoseDetails(context) {
.enter()
.append('li')
.append('a')
.attr('href', '#')
.attr('class', 'error_entity_link')
.html(d => d)
.each(function() {