ソースを参照

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

tags/1.5.0
Covfefeable 4ヶ月前
コミット
449e16782e
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      web/app/components/datasets/common/document-picker/document-list.tsx

+ 1
- 1
web/app/components/datasets/common/document-picker/document-list.tsx ファイルの表示

@@ -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 (

読み込み中…
キャンセル
保存