Skip to content

Commit

Permalink
#25 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
minpeter committed Nov 3, 2022
1 parent 3a39292 commit af8b9f6
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 af8b9f6

Please sign in to comment.