From 4ac5e554135a5d767f86d03a75f46b030a5188b4 Mon Sep 17 00:00:00 2001
From: Erich Focht <efocht@users.noreply.github.com>
Date: Mon, 7 Aug 2023 22:36:23 +0200
Subject: [PATCH] Actually enable x-scrolling when citations overflow. (#178)

---
 .../WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx
index 9ffe97138..91aab2edf 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx
@@ -22,7 +22,7 @@ export default function Citations({ sources = [] }) {
 
   return (
     <div className="flex flex-col mt-4 justify-left">
-      <div className="no-scroll flex flex-col justify-left overflow-x-scroll ">
+      <div className="flex flex-col justify-left overflow-x-scroll ">
         <div className="w-full flex overflow-x-scroll items-center gap-4 mt-1 doc__source">
           {combineLikeSources(sources).map((source) => (
             <Citation id={source?.id || v4()} source={source} />
-- 
GitLab