Changes in Contact Request

This commit is contained in:
2024-10-08 17:22:55 +02:00
parent ca15cfbd0b
commit 8dbf43b672
2 changed files with 5 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ const dataStore = useDataStore()
const query = ref('')
const supabase = useSupabaseClient()
const toast = useToast()
const router = useRouter()
const links = [{
label: 'Shortcuts',
@@ -105,7 +107,8 @@ const contactRequestData = ref({
contactName: dataStore.activeProfile.fullName,
contactTel: dataStore.activeProfile.phoneMobile || dataStore.activeProfile.phoneHome,
contactMail: dataStore.activeProfile.email,
contactType: "Hilfe"
contactType: "Hilfe",
currentPath: router.currentRoute
})
const addContactRequest = async () => {