diff --git a/package.json b/package.json index f1e863d..f3c2b1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "no-copy-frontend", - "version": "0.25.0", + "version": "0.26.0", "private": true, "scripts": { "dev": "next dev -p 2999", diff --git a/src/app/ui/modal-windows/file-info-modal-window.tsx b/src/app/ui/modal-windows/file-info-modal-window.tsx index 510d2b4..3c35631 100644 --- a/src/app/ui/modal-windows/file-info-modal-window.tsx +++ b/src/app/ui/modal-windows/file-info-modal-window.tsx @@ -17,6 +17,8 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre setWindowClose(false); } + console.log(fileInfo); + return (
@@ -56,7 +58,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre Email
- {fileInfo.ownerMail ? fileInfo.ownerMail : '-'} + {fileInfo.ownerEmail ? fileInfo.ownerEmail : '-'}
@@ -104,7 +106,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre Формат
- {fileInfo.fileFormat ? fileInfo.fileFormat : '-'} + {fileInfo.fileExtension ? fileInfo.fileExtension : '-'}
@@ -128,7 +130,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre Количество проверок
- {fileInfo.checksCount ? fileInfo.checksCount : '-'} + {fileInfo.checksCount ? fileInfo.checksCount : '0'}