diff options
| author | joonhoekim <26rote@gmail.com> | 2025-11-04 17:30:27 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-11-04 17:30:27 +0900 |
| commit | a1710296dbc1881a7ed86093872904a529901430 (patch) | |
| tree | 62e4be5dabba4bf7c337769f391d11ce59154cc4 /lib/pos/components/pos-file-selection-dialog.tsx | |
| parent | 680da9b323db8b8d7cf27c674ab0016ec87bfe81 (diff) | |
(김준회) RFQ 테이블 POS 다운로드할 수 있도록 변경, 벤더측은 다운로드시 암호화 해제 추가, item dialog 통일처리
Diffstat (limited to 'lib/pos/components/pos-file-selection-dialog.tsx')
| -rw-r--r-- | lib/pos/components/pos-file-selection-dialog.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/pos/components/pos-file-selection-dialog.tsx b/lib/pos/components/pos-file-selection-dialog.tsx index 29936d21..0553754d 100644 --- a/lib/pos/components/pos-file-selection-dialog.tsx +++ b/lib/pos/components/pos-file-selection-dialog.tsx @@ -18,7 +18,6 @@ import { TableRow, } from "@/components/ui/table" import { Button } from "@/components/ui/button" -import { ScrollArea } from "@/components/ui/scroll-area" import { Badge } from "@/components/ui/badge" interface PosFileInfo { @@ -49,7 +48,7 @@ export function PosFileSelectionDialog({ }: PosFileSelectionDialogProps) { return ( <Dialog open={isOpen} onOpenChange={onClose}> - <DialogContent className="max-w-4xl"> + <DialogContent className="max-w-7xl max-h-[90vh]"> <DialogHeader> <DialogTitle className="flex items-center gap-2"> <FileText className="h-5 w-5 text-green-600" /> @@ -62,7 +61,7 @@ export function PosFileSelectionDialog({ </DialogDescription> </DialogHeader> - <ScrollArea className="max-h-[60vh]"> + <div className="overflow-auto max-h-[70vh]"> <Table> <TableHeader> <TableRow> @@ -119,7 +118,7 @@ export function PosFileSelectionDialog({ ))} </TableBody> </Table> - </ScrollArea> + </div> {files.length === 0 && ( <div className="text-center py-8 text-muted-foreground"> |
