Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/calendar.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Appointments/AppointmentDetails.vue')
-rw-r--r--src/components/Appointments/AppointmentDetails.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Appointments/AppointmentDetails.vue b/src/components/Appointments/AppointmentDetails.vue
index 49ad5184..f80ecc88 100644
--- a/src/components/Appointments/AppointmentDetails.vue
+++ b/src/components/Appointments/AppointmentDetails.vue
@@ -55,10 +55,10 @@
{{ $t('calendar', 'Could not book the appointment. Please try again later or contact the organizer.') }}
</div>
<div class="buttons">
- <button class="button primary"
+ <ButtonVue class="button primary"
@click="save">
{{ $t('calendar', 'Book the appointment') }}
- </button>
+ </ButtonVue>
</div>
</div>
</div>
@@ -66,6 +66,7 @@
</template>
<script>
import Avatar from '@nextcloud/vue/dist/Components/NcAvatar.js'
+import { NcButton as ButtonVue } from '@nextcloud/vue'
import Modal from '@nextcloud/vue/dist/Components/NcModal.js'
import autosize from '../../directives/autosize.js'
@@ -75,6 +76,7 @@ export default {
name: 'AppointmentDetails',
components: {
Avatar,
+ ButtonVue,
Modal,
},
directives: {