Skip to content

Commit

Permalink
fix: Correct link direction in footer - code of conduct (#136)
Browse files Browse the repository at this point in the history
this **PR** contains correcting the direction of footer element which is
'Code of Conduct' to direct to the right page
a workaround was created in jenkins.io repository which is redirecting
from `'/conduct'` to `'/project/conduct' `
but this **PR** solves the problem 


issue related: #132
  • Loading branch information
nouralmulhem committed Mar 11, 2024
1 parent 7e4142f commit da7dd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jio-footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class Footer extends LitElement {
<h5>Other</h5>
<ul class="other">
<li>
<a href=${relOrAbsoluteLink('/conduct/', this.property).href}>${msg('Code of Conduct')}</a>
<a href=${relOrAbsoluteLink('/project/conduct/', this.property).href}>${msg('Code of Conduct')}</a>
</li>
<li>
<a href=${relOrAbsoluteLink('/press/', this.property).href}>${msg('Press information')}</a>
Expand Down

0 comments on commit da7dd61

Please sign in to comment.