dev: dropdown overflow issue resolved in kanban (#1106)

This commit is contained in:
guru_sainath 2023-05-21 19:08:28 +05:30 committed by GitHub
parent 83a0c8163f
commit a44cddb0fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -99,7 +99,7 @@ export const SingleBoard: React.FC<Props> = ({
</div>
</>
)}
<div className="pt-3 overflow-y-auto">
<div className="pt-3 overflow-hidden overflow-y-scroll">
{groupedByIssues?.[groupTitle].map((issue, index) => (
<Draggable
key={issue.id}