Don't show file mode in the manager
This commit is contained in:
parent
76b9fae4e9
commit
f31a1288af
1 changed files with 1 additions and 5 deletions
|
@ -64,11 +64,7 @@ const FileObjectRow = ({ file }: { file: FileObject }) => (
|
||||||
>
|
>
|
||||||
<SelectFileCheckbox name={file.name}/>
|
<SelectFileCheckbox name={file.name}/>
|
||||||
<Clickable file={file}>
|
<Clickable file={file}>
|
||||||
<div css={tw`w-24 ml-6 pl-3 hidden md:block`}>
|
<div css={tw`flex-none self-center text-neutral-400 ml-6 mr-4 text-lg pl-3`}>
|
||||||
{file.mode}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div css={tw`flex-none self-center text-neutral-400 ml-6 md:ml-0 mr-4 text-lg pl-3`}>
|
|
||||||
{file.isFile ?
|
{file.isFile ?
|
||||||
<FontAwesomeIcon icon={file.isSymlink ? faFileImport : file.isArchiveType() ? faFileArchive : faFileAlt}/>
|
<FontAwesomeIcon icon={file.isSymlink ? faFileImport : file.isArchiveType() ? faFileArchive : faFileAlt}/>
|
||||||
:
|
:
|
||||||
|
|
Loading…
Reference in a new issue