Fix job posting link should open in new tab
This commit is contained in:
@ -14,7 +14,7 @@ const thumbnailStyle = {
|
|||||||
|
|
||||||
function addATags(text) {
|
function addATags(text) {
|
||||||
return text.replace(urlRegex, function(match) {
|
return text.replace(urlRegex, function(match) {
|
||||||
return `<a href=${match}>${match}</a>`;
|
return `<a href=${match} target='_blank'>${match}</a>`;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user