aboutsummaryrefslogtreecommitdiffstats
path: root/web/pages/agenda.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-08-15 19:20:48 +0100
committerLeonardo Bishop <me@leonardobishop.com>2025-08-15 19:20:48 +0100
commit8f7dec8ba6b2f9bde01afd0a110596ebbd43e0ed (patch)
tree7b4f203d92f4b99b1e98fac314415e293984196b /web/pages/agenda.vue
parent4697556cac819c47d068819b9fc9c3b4ea84e279 (diff)
Implement OIDC
Diffstat (limited to 'web/pages/agenda.vue')
-rw-r--r--web/pages/agenda.vue5
1 files changed, 1 insertions, 4 deletions
diff --git a/web/pages/agenda.vue b/web/pages/agenda.vue
index 5e0c643..9b55c9b 100644
--- a/web/pages/agenda.vue
+++ b/web/pages/agenda.vue
@@ -14,9 +14,6 @@ const favouriteEvents = computed(() => {
const calendarStatus = ref('pending' as 'pending' | 'idle');
const calendarLink = ref('')
-const calendarLinkWithPageProtocol = computed(() => {
- return window.location.protocol + '//' + calendarLink.value;
-});
const refConfirmDeleteDialog = ref<typeof Dialog>();
@@ -97,7 +94,7 @@ function deleteCalendar() {
<div v-else-if="calendarStatus === 'idle'" class="calendar">
<template v-if="calendarLink">
<span>You can add your agenda to your own calendar using the iCal link below</span>
- <Input :value="calendarLinkWithPageProtocol" readonly/>
+ <Input :value="calendarLink" readonly/>
<Button @click="refConfirmDeleteDialog!.show()" :loading="calendarAction">Delete calendar</Button>
</template>
<template v-else>