Skip to content

Commit

Permalink
[ui] Fix Chrome extension link
Browse files Browse the repository at this point in the history
The whitespace within the href led to a failed navigation.

Change-Id: If00a19872e12acce08ce19fc65dc7f28fe21f90f
  • Loading branch information
paulirish committed Sep 30, 2023
1 parent f952448 commit d3bf532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/frontend/record_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ function RecordingNotes() {
const linuxUrl = 'https://perfetto.dev/docs/quickstart/linux-tracing';
const cmdlineUrl =
'https://perfetto.dev/docs/quickstart/android-tracing#perfetto-cmdline';
const extensionURL = `https://chrome.google.com/webstore/detail/
perfetto-ui/lfmkphfpdbjijhpomgecfikhfohaoine`;
const extensionURL =
`https://chrome.google.com/webstore/detail/perfetto-ui/lfmkphfpdbjijhpomgecfikhfohaoine`;

const notes: m.Children = [];

Expand Down

0 comments on commit d3bf532

Please sign in to comment.