Skip to content

Commit

Permalink
Merge pull request #28 from ananjaemin/main
Browse files Browse the repository at this point in the history
dev <- main
  • Loading branch information
ananjaemin committed Nov 4, 2022
2 parents 8660a8b + 84038ce commit 5134747
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/filelist/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ export const FileListPage: React.FC = () => {
{fileList?.map((item, index) => (
<FileListBox
key={index}
filename={getShortFileName(item.Name)}
size={getFileSize(item.Size)}
LastModified={getDate(item.LastModified)}
filename={getShortFileName(item.filename)}
size={getFileSize(item.size)}
LastModified={getDate(item.lastModified)}
click={() => {
SetDownloadFileProps({
Name: item.Name,
Size: item.Size,
LastModified: item.LastModified,
Name: item.filename,
Size: item.size,
LastModified: item.lastModified,
//passowrd 유무 추가예정
});
navigate('/download');
Expand Down

0 comments on commit 5134747

Please sign in to comment.