fix: navbar help link (#77)

* fix: navbar help link

* fix: update links.php
This commit is contained in:
Jeffrey Zang
2023-01-26 03:33:43 -05:00
committed by GitHub
parent 1b15597e0e
commit 462f44a99c
3 changed files with 5 additions and 3 deletions

View File

@@ -24,7 +24,7 @@
>
Help
</a>
<a href="https://help.opnform.com/en/" class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1"
<a :href="helpUrl" class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1"
target="_blank" v-else
>
Help
@@ -147,6 +147,7 @@ export default {
computed: {
githubUrl: () => window.config.links.github_url,
helpUrl: () => window.config.links.help_url,
form() {
if (this.$route.name && this.$route.name.startsWith('forms.show_public')) {
return this.$store.getters['open/forms/getBySlug'](this.$route.params.slug)
@@ -182,7 +183,7 @@ export default {
},
hasCrisp() {
return window.config.crisp_website_id
}
},
},
methods: {