Skip to content

Commit 7cd1273

Browse files
slusarzcmouse
authored andcommitted
events: ID parameter needs value of k, not the letter k itself
1 parent 9206caf commit 7cd1273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/EventsComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const d = Object.fromEntries(Object.entries(data).filter(([k, v]) =>
3636
<template>
3737
<section class="eventsList">
3838
<article v-for="(v, k) in d">
39-
<h3 id="k" tabindex="-1">
39+
<h3 :id="k" tabindex="-1">
4040
<code>{{ k }}</code>
4141
<a class="header-anchor" :href="'#' + k"></a>
4242
</h3>

0 commit comments

Comments
 (0)