mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-23 08:03:49 +00:00
associate location on ms calendar remote
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<teleport to="body">
|
||||
<Teleport to="body">
|
||||
<modal v-if="showModal"
|
||||
@close="showModal = false">
|
||||
@close="closeModal">
|
||||
|
||||
<template v-slot:header>
|
||||
<h3>{{ 'Modifier le lieu' }}</h3>
|
||||
@@ -20,7 +20,7 @@
|
||||
</template>
|
||||
|
||||
</modal>
|
||||
</teleport>
|
||||
</Teleport>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
@@ -59,6 +59,10 @@ const saveAndClose = function(e: Event): void {
|
||||
.then(_ => {showModal.value = false;})
|
||||
}
|
||||
|
||||
const closeModal = function(_: any): void {
|
||||
showModal.value = false;
|
||||
}
|
||||
|
||||
defineExpose({startEdit});
|
||||
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user