add info for file info modal window
This commit is contained in:
@@ -17,6 +17,8 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre
|
||||
setWindowClose(false);
|
||||
}
|
||||
|
||||
console.log(fileInfo);
|
||||
|
||||
return (
|
||||
<div className='file-info-modal-window'>
|
||||
|
||||
@@ -56,7 +58,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre
|
||||
Email
|
||||
</div>
|
||||
<div className="file-info-modal-window-content" >
|
||||
{fileInfo.ownerMail ? fileInfo.ownerMail : '-'}
|
||||
{fileInfo.ownerEmail ? fileInfo.ownerEmail : '-'}
|
||||
</div>
|
||||
</div>
|
||||
<div className="file-info-modal-window-item">
|
||||
@@ -104,7 +106,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre
|
||||
Формат
|
||||
</div>
|
||||
<div className="file-info-modal-window-content" >
|
||||
{fileInfo.fileFormat ? fileInfo.fileFormat : '-'}
|
||||
{fileInfo.fileExtension ? fileInfo.fileExtension : '-'}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -128,7 +130,7 @@ export function FileInfoModalWindow({ fileInfo, setWindowClose, setWindowChildre
|
||||
Количество проверок
|
||||
</div>
|
||||
<div className="file-info-modal-window-content" >
|
||||
{fileInfo.checksCount ? fileInfo.checksCount : '-'}
|
||||
{fileInfo.checksCount ? fileInfo.checksCount : '0'}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user