Skip to content

Commit

Permalink
fix(website): missing changelog path for v6
Browse files Browse the repository at this point in the history
Signed-off-by: Cory Rylan <splintercode.cb@gmail.com>
  • Loading branch information
coryrylan committed Dec 9, 2021
1 parent 5a901eb commit ad27af7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/website/.vuepress/theme/global-components/Release.vue
Expand Up @@ -35,12 +35,13 @@
<script>
import v4 from '../../../../../changelogs/v4.json';
import v5 from '../../../../../changelogs/v5.json';
import v6 from '../../../../../changelogs/v6.json';
import ReleaseGroup from './ReleaseGroup';
import ReleaseItem from './ReleaseItem';
// To make this reusable, we have to load data from different JSON files and merge them here as one object.
// Any new versions would need to be added and referenced as part of this in future releases.
const data = { v4, v5 };
const data = { v4, v5, v6 };
export default {
name: 'Release',
Expand Down

0 comments on commit ad27af7

Please sign in to comment.