Make control page links open in new window

This commit is contained in:
Max Goodhart
2020-06-19 19:21:34 -07:00
parent 570b07ed1e
commit fd7fc26956

View File

@@ -215,7 +215,11 @@ function StreamLine({ id, row: { Label, Source, Title, Link, Notes } }) {
Label
) : (
<>
<strong>{Source}</strong> <a href={Link}>{Title || Link}</a> {Notes}
<strong>{Source}</strong>{' '}
<a href={Link} target="_blank">
{Title || Link}
</a>{' '}
{Notes}
</>
)}
</div>