fix(route/bugzilla): add missing prefix to example (#15818)

This commit is contained in:
Franklin Yu 2024-06-04 06:22:45 -07:00 committed by GitHub
parent aa756e8302
commit ca3c3f78f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ const INSTANCES = new Map([
['apache', 'bz.apache.org/bugzilla'],
['apache.ooo', 'bz.apache.org/ooo'], // Apache OpenOffice
['apache.SpamAssassin', 'bz.apache.org/SpamAssassin'],
['kernel', 'bugzilla.kernel.org'],
['mozilla', 'bugzilla.mozilla.org'],
['webkit', 'bugs.webkit.org'],
]);
@ -42,7 +43,7 @@ export const route: Route = {
name: 'bugs',
maintainers: ['FranklinYu'],
handler,
example: '/bug/webkit/251528',
example: '/bugzilla/bug/webkit/251528',
parameters: {
site: 'site identifier',
bugId: 'numeric identifier of the bug in the site',