Skip to content
Snippets Groups Projects
Unverified Commit 6d80fe96 authored by Sean Hatfield's avatar Sean Hatfield Committed by GitHub
Browse files

[FIX] Add max height and scrolling to FolderSelectionPopup (#982)


* add max height and scrolling to FolderSelectionPopup

* hide scrollbar

---------

Co-authored-by: default avatartimothycarambat <rambat1010@gmail.com>
parent bf8df60c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment