Fix job posting link should open in new tab

pull/4137/head
Berkeley Martinez 2015-11-02 14:54:08 -08:00
parent d8edf40827
commit 610f9ab840
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ const thumbnailStyle = {
function addATags(text) {
return text.replace(urlRegex, function(match) {
return `<a href=${match}>${match}</a>`;
return `<a href=${match} target='_blank'>${match}</a>`;
});
}