Merge pull request #4916 from nextcloud/fix-disabling-appointments

fix(appointments): Fix disabling appointments feature
This commit is contained in:
Christoph Wurst 2023-01-23 11:13:16 +01:00 committed by GitHub
commit 39cbd62ae7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
<EditCalendarModal />
<!-- Appointment Configuration List -->
<template v-if="isAuthenticatedUser">
<template v-if="!disableAppointments && isAuthenticatedUser">
<AppNavigationSpacer />
<AppointmentConfigList />
</template>