Fix job posting link should open in new tab

This commit is contained in:
Berkeley Martinez
2015-11-02 14:54:08 -08:00
parent d8edf40827
commit 610f9ab840

View File

@ -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>`;
}); });
} }