Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change path to terms-and-conditions #950

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/components/dialog/SplashScreenDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const showDialog = defineModel({ default: false })

const router = useRouter()

const termsPath = 'terms-of-use'
const termsPath = 'terms-and-conditions'
const configStore = useConfigStore()
const termsComponent = computed(() =>
configStore
Expand Down
4 changes: 2 additions & 2 deletions src/components/dialog/TermsOfUseDialog.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-dialog v-model="showTermsDialog" persistent max-width="900">
<v-card style="cursor: default">
<v-card-title class="text-h5">Terms of Use</v-card-title>
<v-card-title class="text-h5">Terms and Conditions</v-card-title>
<HtmlDisplay :url="url" />
<v-card-actions class="pt-0">
<v-checkbox
Expand Down Expand Up @@ -33,7 +33,7 @@ import HtmlDisplay from '@/components/general/HtmlDisplay.vue'
const showTermsDialog = defineModel({ default: false })
const isInAgreement = ref(false)

const termsPath = 'terms-of-use'
const termsPath = 'terms-and-conditions'
const configStore = useConfigStore()
const url = computed(() => {
const matchingComponent = configStore
Expand Down
Loading