Commit e50235d 1 parent 2da6c09 commit e50235d Copy full SHA for e50235d
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1897,7 +1897,7 @@ class DataHarmonizer {
1897
1897
1898
1898
// Requires markup treatment of URLS. Issue: this is getting rendered
1899
1899
// wrong.
1900
- const slot_uri = this . renderSemanticID ( field . slot_uri , true ) ;
1900
+ const slot_uri = this . renderSemanticID ( field . slot_uri ) ;
1901
1901
if ( field . slot_uri && this . columnHelpEntries . includes ( 'slot_uri' ) ) {
1902
1902
ret += `<p><strong data-i18n="help-sidebar__column">${ i18next . t (
1903
1903
'help-sidebar__slot_uri'
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const urlToClickableAnchor = (string) => {
53
53
'g'
54
54
) ;
55
55
// Replace the URL with an anchor tag in the string
56
- string = string . replace ( regex , `<a href="${ escapedURL } ">${ escapedURL } </a>` ) ;
56
+ string = string . replace ( regex , `<a href="${ escapedURL } " target="_blank" >${ escapedURL } </a>` ) ;
57
57
} ) ;
58
58
59
59
return string ;
You can’t perform that action at this time.
0 commit comments