Skip to content

Commit

Permalink
Fix "Report barrier" mailto link
Browse files Browse the repository at this point in the history
  • Loading branch information
Phu2 committed Jul 9, 2024
1 parent 80ffd63 commit 2164ec3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/footer.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class Footer extends React.Component {
{this.props.privacy}
</a>
{" | "}
<a href="https://www.hbz-nrw.de/barrierefreiheit">
<a href={this.props.accessibilityLink}>
{this.props.accessibility}
</a>
{" | "}
Expand Down
3 changes: 2 additions & 1 deletion gatsby/lobid/src/templates/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export default function Template({ data, pageContext }) {
privacy={pageContext.lang==="de"?"Datenschutz":"Privacy"}
contactPointId="mailto:[email protected]"
warranty={pageContext.lang==="de"?"Gewährleistung":"Warranty"}
accessibility={pageContext.lang==="de"?"Barrierefreiheit":"Accessibility"}
accessibility={pageContext.lang==="de"?"Barrierefreiheit":"Report barrier"}
accessibilityLink={pageContext.lang==="de"?"https://www.hbz-nrw.de/barrierefreiheit":"mailto:[email protected]?subject=Report%20barrier"}
/>
</div>
)
Expand Down
2 changes: 2 additions & 0 deletions gatsby/lobid/src/templates/team.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export default ({ data, location, pageContext }) => {
memberFormerName={pageContext.lang==="de"?"Ehemalige":"Former members"}
companyDetails={pageContext.lang==="de"?"Impressum":"Imprint"}
privacy={pageContext.lang==="de"?"Datenschutz":"Privacy"}
accessibility={pageContext.lang==="de"?"Barrierefreiheit":"Report barrier"}
accessibilityLink={pageContext.lang==="de"?"https://www.hbz-nrw.de/barrierefreiheit":"mailto:[email protected]?subject=Report%20barrier"}
contactPointId="mailto:[email protected]"
/>
)};
Expand Down

0 comments on commit 2164ec3

Please sign in to comment.