diff --git a/src/main/webapp/assets/js/views/agendas.vue b/src/main/webapp/assets/js/views/agendas.vue index c8d998e..17a90a3 100644 --- a/src/main/webapp/assets/js/views/agendas.vue +++ b/src/main/webapp/assets/js/views/agendas.vue @@ -135,7 +135,7 @@ const getUrl = window.location; // if (baseUrl.endsWith("/")) { // baseUrl = baseUrl.slice(0, -1); // } -let baseUrl = getUrl.protocol + "//" + getUrl.host +let baseUrl = getUrl.protocol + "//" + getUrl.host; module.exports = { data() { return { @@ -179,7 +179,9 @@ module.exports = { this.url = ""; this.selectedDate = new Date(); - swal("Succès!", "L'agenda a été créé", "success"); + swal("Succès!", "L'agenda a été créé", "success").then((value) => { + location.href = baseUrl; + }); } catch (error) { swal("Erreur!", `${error}`, "error"); console.error(error);