diff --git a/frontend/src/pages/thx.vue b/frontend/src/pages/thx.vue
index 41c63c7d8..308c354fa 100644
--- a/frontend/src/pages/thx.vue
+++ b/frontend/src/pages/thx.vue
@@ -9,7 +9,11 @@
{{ $t(displaySetup.subtitle) }}
-
+
+
+ {{ $t(displaySetup.button) }}
+
+
{{ $t(displaySetup.button) }}
@@ -65,6 +69,11 @@ export default {
this.displaySetup = textFields[this.$route.params.comingFrom]
},
},
+ computed: {
+ redeemLoginLink() {
+ return this.$route.params.code ? '/login/' + this.$route.params.code : '/login'
+ },
+ },
created() {
this.setDisplaySetup()
},