mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Read target
prop from the links in the footer (#22074)
* Grafana-core: Read target prop from the links in footer instead of having them hardcoded * Grafana-core: Update ServerStats snapshot
This commit is contained in:
@@ -68,7 +68,7 @@ export const Footer: FC = React.memo(() => {
|
||||
<ul>
|
||||
{links.map(link => (
|
||||
<li key={link.text}>
|
||||
<a href={link.url} target="_blank" rel="noopener">
|
||||
<a href={link.url} target={link.target} rel="noopener">
|
||||
<i className={link.icon} /> {link.text}
|
||||
</a>
|
||||
</li>
|
||||
|
Reference in New Issue
Block a user