Skip to content

Commit e6ebbec

Browse files
authored
Merge pull request #615 from wmde/accessibility-statement
Add Accessibility Statement page
2 parents c098a53 + 960a378 commit e6ebbec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/layout/AppFooter.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const footerMenu = [
4040
{ id: 'contact', url: `/contact/get-in-touch?${ campaignParams }` },
4141
{ id: 'imprint', url: `/page/Impressum?${ campaignParams }` },
4242
{ id: 'data_protection', url: `/page/Datenschutz?${ campaignParams }` },
43+
{ id: 'accessibility_statement', url: `/page/accessibility-statement?${ campaignParams }` },
4344
{ id: 'supporters_list', url: `/page/hall-of-fame?${ campaignParams }` },
4445
{ id: 'donor_comments', url: `/list-comments.html?${ campaignParams }` },
4546
];

tests/unit/components/layout/AppFooter.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ describe( 'AppFooter.vue', () => {
77
[ 'contact', 1 ],
88
[ 'imprint', 2 ],
99
[ 'data_protection', 3 ],
10-
[ 'supporters_list', 4 ],
11-
[ 'donor_comments', 5 ],
10+
[ 'accessibility_statement', 4 ],
11+
[ 'supporters_list', 5 ],
12+
[ 'donor_comments', 6 ],
1213
] )( 'highlights the correct navigation items', ( pageIdentifier: string, navItemIndex: number ) => {
1314
const wrapper = shallowMount( AppFooter, {
1415
props: {

0 commit comments

Comments
 (0)