Browse Source

fix: update DocumentList to include max height and overflow styles (#21466)

tags/1.5.0
Covfefeable 4 months ago
parent
commit
449e16782e
No account linked to committer's email address

+ 1
- 1
web/app/components/datasets/common/document-picker/document-list.tsx View File

@@ -21,7 +21,7 @@ const DocumentList: FC<Props> = ({
}, [onChange])

return (
<div className={cn(className)}>
<div className={cn('max-h-[calc(100vh-120px)] overflow-auto', className)}>
{list.map((item) => {
const { id, name, extension } = item
return (

Loading…
Cancel
Save