Make ESLint happy, fix minor issue with file manager breadcrumb
This commit is contained in:
parent
d8f75fa0b7
commit
bb559422dc
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ export default () => {
|
|||
<FileActionCheckbox
|
||||
type={'checkbox'}
|
||||
css={tw`mx-4`}
|
||||
checked={selectedFilesLength === (files ? files.length : -1)}
|
||||
checked={selectedFilesLength === (files?.length === 0 ? -1 : files?.length)}
|
||||
onChange={onSelectAllClick}
|
||||
/>
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue