Skip to content

Commit

Permalink
fix: fix privacy policy and term of service links in about page
Browse files Browse the repository at this point in the history
fix #237
  • Loading branch information
amoncaldas committed Oct 26, 2021
1 parent 61252c7 commit f05da0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/fragments/about/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@
<br>
<p class="textjustify">{{$t('about.info_V')}}</p>
<v-divider></v-divider>
<h4 class="sectionHeader"><a class="link" :href="constants.links.termsOfService"
target="_blank">{{$t('about.privacyPolicy')}}</a></h4>
<h4 class="sectionHeader">
<a class="link" :title="$t('about.privacyPolicy')" :href="constants.links.privacyPolicy" target="_blank">{{$t('about.privacyPolicy')}}</a>&nbsp; &nbsp;
<a class="link" :title="$t('about.termsOfService')" :href="constants.links.termsOfService" target="_blank">{{$t('about.termsOfService')}}</a>
</h4>
<br>
</section>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/fragments/about/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ section {
float: left;
margin: 0 20px 40px 0;
}

1 change: 1 addition & 0 deletions src/resources/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ const constants = {
askOrs: 'https://ask.openrouteservice.org/c/maps/20',
reportIssue: 'https://github.com/GIScience/ors-map-client/issues/new',
termsOfService: 'https://openrouteservice.org/terms-of-service',
privacyPolicy: 'https://openrouteservice.org/privacy-policy/',
donate: 'https://openrouteservice.org/donations/',
aboutGHSL: 'https://ghsl.jrc.ec.europa.eu/about.php',
heiGitEn: 'http://www.geog.uni-heidelberg.de/gis/heigit_en.html',
Expand Down

0 comments on commit f05da0d

Please sign in to comment.