Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
atuchin-m committed Oct 23, 2024
1 parent c9421ea commit 441d8e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core/url_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ export function getStudyRawConfigUrl(
): string {
if (seedType === SeedType.UPSTREAM)
return `${getGitHubStorageUrl()}/blob/main/study/all-by-name/${study}`;
return 'https://github.com/search?type=code' +
return (
'https://github.com/search?type=code' +
'&q=repo%3Abrave%2Fbrave-variations' +
'+path%3A%2F%5Eseed%5C%2Fseed.json%7C%5Estudies%5C%2F*.json5%2F+' +
`"%5C"name%5C"%3A+%5C"${encodeURIComponent(study)}%5C""`;
`"%5C"name%5C"%3A+%5C"${encodeURIComponent(study)}%5C""`
);
}

// Returns a link to see the study config at griffin.brave.com.
Expand Down

0 comments on commit 441d8e8

Please sign in to comment.