From 4580159c911cb9258287531ef3f44b1db83e715b Mon Sep 17 00:00:00 2001 From: Emmanuel Viennet Date: Wed, 28 Sep 2022 15:08:34 +0200 Subject: [PATCH] Fix: envoi commentaires sur saisies notes web --- app/static/js/saisie_notes.js | 2 +- sco_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/js/saisie_notes.js b/app/static/js/saisie_notes.js index 43997ab01..747d09fe2 100644 --- a/app/static/js/saisie_notes.js +++ b/app/static/js/saisie_notes.js @@ -47,7 +47,7 @@ function save_note(elem, v, etudid) { 'etudid': etudid, 'evaluation_id': evaluation_id, 'value': v, - 'comment': $("#formnotes_comment").attr("value") + 'comment': document.getElementById('formnotes_comment').value }, function (result) { sco_message("enregistré"); diff --git a/sco_version.py b/sco_version.py index 23d862362..61942977a 100644 --- a/sco_version.py +++ b/sco_version.py @@ -1,7 +1,7 @@ # -*- mode: python -*- # -*- coding: utf-8 -*- -SCOVERSION = "9.3.46" +SCOVERSION = "9.3.47" SCONAME = "ScoDoc"