Skip to content

Commit

Permalink
fix(about): use Text component with _blank target
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Sep 1, 2021
1 parent b2d823f commit ee48a80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/AppLayout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({children}) => {
Homepage
</TextListItem>
<TextListItem component="dd">
<a href='https://cryostat.io'>cryostat.io</a>
<Text component={TextVariants.a} target="_blank" href='https://cryostat.io'>cryostat.io</Text>
</TextListItem>
<TextListItem component="dt">
Bugs
Expand All @@ -247,13 +247,13 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({children}) => {
Mailing List
</TextListItem>
<TextListItem component="dd">
<a href='https://groups.google.com/g/cryostat-development'>Google Groups</a>
<Text component={TextVariants.a} target="_blank" href='https://groups.google.com/g/cryostat-development'>Google Groups</Text>
</TextListItem>
<TextListItem component="dt">
Open Source License
</TextListItem>
<TextListItem component="dd">
<a href='https://github.com/cryostatio/cryostat/blob/main/LICENSE'>License</a>
<Text component={TextVariants.a} target="_blank" href='https://github.com/cryostatio/cryostat/blob/main/LICENSE'>License</Text>
</TextListItem>
</TextList>
</TextContent>
Expand Down

0 comments on commit ee48a80

Please sign in to comment.