Skip to content

Commit

Permalink
fix: link to docs on the monitor tab (#929)
Browse files Browse the repository at this point in the history
* fix: link to docs on the monitor tab

This commit fixes a broken link on the empty state banner of the monitor page.

Signed-off-by: Alessandro Racheli <alessandroracheli@gmail.com>

* fix: snapshot tests

This commit updates the related snapshot tests.

Signed-off-by: Alessandro Racheli <alessandroracheli@gmail.com>
  • Loading branch information
FloydJohn committed Apr 13, 2022
1 parent 53da5e6 commit 5d05a79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,11 @@ exports[`<MonitorATMServicesView> ATM snapshot test with no metrics 1`] = `
<Link
replace={false}
target="_blank"
to="//https://www.jaegertracing.io/docs/latest/spm/"
to={
Object {
"pathname": "https://www.jaegertracing.io/docs/latest/spm/",
}
}
>
 instructions 
</Link>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class MonitorATMServicesViewImpl extends React.PureComponent<TProps, Stat
message={
<>
No data yet! Please see these
<Link to={`//${this.docsLink}`} target="_blank">
<Link to={{ pathname: this.docsLink }} target="_blank">
&nbsp;instructions&nbsp;
</Link>
on how to set up your span metrics.
Expand Down

0 comments on commit 5d05a79

Please sign in to comment.