From c523991a4bc4de05db06fdd7a127af77ea0ca0e5 Mon Sep 17 00:00:00 2001 From: SIMAILA Djalim Date: Sun, 15 Jan 2023 13:10:49 +0100 Subject: [PATCH] fixed a typo --- truthseeker/static/js/game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/truthseeker/static/js/game.js b/truthseeker/static/js/game.js index 702d0de..7cdc098 100644 --- a/truthseeker/static/js/game.js +++ b/truthseeker/static/js/game.js @@ -223,8 +223,8 @@ function initSock(){ let emotionDesc = document.createElement("p"); emotionDesc.classList.add("explain_suspect_emotion_description"); - //TODO fix typos here and on the database - emotionDesc.textContent = "Qui se caractérise par un " + finalResults["npcs"][npcid]["description"]; + //TODO fix typos on the database + emotionDesc.textContent = "Qui se caractérise par " + finalResults["npcs"][npcid]["description"]; suspect.appendChild(emotionDesc) document.getElementsByClassName("suspects_list")[0].appendChild(suspect)