Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions www/webapp/src/views/SignUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@
>
<template #label>
<v-flex>
Yes, I agree to the <a @click.stop="open_route('terms')">Terms of Use</a> and
<a @click.stop="open_route('privacy-policy')">Privacy Policy</a>.
Yes, I agree to the <span @click.stop><router-link :to="{name: 'terms'}" target="_blank">Terms of Use</router-link></span> and
<span @click.stop><router-link :to="{name: 'privacy-policy'}" target="_blank">Privacy Policy</router-link></span>.
</v-flex>
</template>
</v-checkbox>
Expand Down Expand Up @@ -236,10 +236,6 @@
this.domainType = this.$route.query.domainType || 'custom';
},
methods: {
async open_route(route) {
window.open(this.$router.resolve({name: route}).href);
this.terms = !this.terms; // silly but easy fix for "accidentally" checking the box by clicking the link
},
async getCaptcha(focus = false) {
this.captchaWorking = true;
this.captchaSolution = "";
Expand Down