From b049c46571a1faf881f52796716d10de4b415dc4 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Fri, 5 Apr 2024 11:45:47 +0200 Subject: [PATCH] Avoid title reseting mid modification --- frontend/src/Apps/Msg.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/src/Apps/Msg.vue b/frontend/src/Apps/Msg.vue index dfdf50d..709f8c4 100644 --- a/frontend/src/Apps/Msg.vue +++ b/frontend/src/Apps/Msg.vue @@ -11,6 +11,7 @@ const msgContent = ref(""); const addMember = ref(false); + const currentTitle = ref(""); function formatTime(date){ return date.getHours() + ":" + date.getMinutes() + " " + date.getDate() + "/" + date.getMonth(); @@ -21,11 +22,11 @@