Skip to content

Commit

Permalink
fix: plugins section id no whitespace (#5299)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Jun 12, 2023
1 parent a09820c commit da5d172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/plugins-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function PluginsList() {
key={plugin.name}
data-cy={`plugin-${plugin.name}`}
>
<h2 id={plugin.name}>{plugin.name}</h2>
<h2 id={plugin.name.replaceAll(' ', '-').toLowerCase()}>{plugin.name}</h2>

{plugin.description && (
<p
Expand Down

0 comments on commit da5d172

Please sign in to comment.