mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-17 18:18:11 +00:00
Actually enable x-scrolling when citations overflow. (#178)
This commit is contained in:
parent
970d38ccb5
commit
4ac5e55413
1 changed files with 1 additions and 1 deletions
|
@ -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} />
|
||||
|
|
Loading…
Add table
Reference in a new issue