mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 01:10:11 +01:00
[FIX] Add max height and scrolling to FolderSelectionPopup (#982)
* add max height and scrolling to FolderSelectionPopup * hide scrollbar --------- Co-authored-by: timothycarambat <rambat1010@gmail.com>
This commit is contained in:
parent
bf8df60c02
commit
6d80fe9602
@ -7,7 +7,7 @@ export default function FolderSelectionPopup({ folders, onSelect, onClose }) {
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="absolute bottom-full left-0 mb-2 bg-white rounded-lg shadow-lg">
|
||||
<div className="absolute bottom-full left-0 mb-2 bg-white rounded-lg shadow-lg max-h-40 overflow-y-auto no-scroll">
|
||||
<ul>
|
||||
{folders.map((folder) => (
|
||||
<li
|
||||
|
Loading…
Reference in New Issue
Block a user