From 7fa66323610517409b6b018e49c7340cbcc96184 Mon Sep 17 00:00:00 2001 From: Roman Yangarber Date: Sat, 27 Apr 2024 14:50:57 +0300 Subject: [PATCH] (fix bug) --- client/components/ChatBot/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/ChatBot/index.js b/client/components/ChatBot/index.js index 4ec9d5f5..f015a514 100644 --- a/client/components/ChatBot/index.js +++ b/client/components/ChatBot/index.js @@ -282,7 +282,7 @@ const Chatbot = () => {
  • {/*show ONLY ONE (i) if either references or explanation exists*/ (ref && showReferenceIcon(hint) - || explanation && checkStringForExplanation(hint)) + || explanation && checkHintForExplanation(hint)) && ()} ))} @@ -327,7 +327,7 @@ const Chatbot = () => {
  • {(ref && showReferenceIcon(hint) - || explanation && checkStringForExplanation(hint)) + || explanation && checkHintForExplanation(hint)) && ()} ))}