Skip to content
Snippets Groups Projects
Commit 7f21a77a authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch '30-open-suggestion-links-in-new-browser-window' into 'main'

Resolve "Open suggestion links in new browser window"

Closes #30

See merge request !18
parents 7ed8b2d6 b8b8256b
No related branches found
No related tags found
1 merge request!18Resolve "Open suggestion links in new browser window"
......@@ -19,7 +19,7 @@ export const ProblemSuggestionList: React.FC<ProblemSuggestionListProps> = ({
<ul>
{suggestions.map((suggestion: Suggestion, i: number) => (
<li key={i}>
<a href={suggestion.link}>{suggestion.description}</a>
<a href={suggestion.link} target="_blank">{suggestion.description}</a>
</li>
))}
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment