Skip to content

Commit

Permalink
Bugfix: urls to internal standards were broken
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Büchse <[email protected]>
  • Loading branch information
mbuechse committed Nov 30, 2023
1 parent 3d54f12 commit 9a97fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion populateCerts.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const sidebarItems = scopes.map((scope) => {
key = `scs-${components2[1]}`
name = `${key}: ${name}`
ver = components2[2]
url = `standards/${filename.substring(0, filename.length - 3)}`
url = filename.substring(0, filename.length - 3)
} else {
const components2 = name.split(' ')
const v = components2.splice(components2.length - 1)
Expand Down

0 comments on commit 9a97fb3

Please sign in to comment.