Skip to content

Commit

Permalink
Change path to terms-and-conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Jun 26, 2024
1 parent 924403c commit d4aea11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit d4aea11

Please sign in to comment.