]> git.parisson.com Git - teleforma.git/commitdiff
bugfix
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 23 May 2023 21:19:31 +0000 (23:19 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 23 May 2023 21:19:31 +0000 (23:19 +0200)
teleforma/templates/teleforma/course_conference_record.html

index f59ef17d2008c8c644e40b7a9b4b17b24eab98ca..e36263e693d302a75f8c9a79f0d680ad43b2e89c 100644 (file)
@@ -39,7 +39,7 @@ jQuery(window).ready(function(){
         var professors = data.result;
         var options = '<option value="">----------</option>';
         for (var i = 0; i < professors.length; i++) {
-          options += '<option value="' + parseInt(professors[i].id) + '">' + professors[i].first_name + ' ' + professors[i].last_name</option>';
+          options += '<option value="' + parseInt(professors[i].id) + '">' + professors[i].first_name + ' ' + professors[i].last_name + '</option>';
         }
         $("#id_professor").html(options);
         $("#id_professor option:first").attr('selected', 'selected');