From 10c1c6096d4a5246de46eafe230c91d1fd054438 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Fri, 19 Apr 2024 18:04:21 +0200 Subject: [PATCH] const error fix This error seems to be there for quite some times. for some reason I haven't seen it at all. I tried to bisect it and couldn't find the origin so I just fix it in this commit --- frontend/src/Apps/ManageCourses.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Apps/ManageCourses.vue b/frontend/src/Apps/ManageCourses.vue index 7337633..96bd35b 100644 --- a/frontend/src/Apps/ManageCourses.vue +++ b/frontend/src/Apps/ManageCourses.vue @@ -17,7 +17,7 @@ const editElementID = ref("") function editItem(id){ - editElementID = id; + editElementID.value = id; } //Juste pour montrer le Create Mode -- 2.46.0