mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-14 12:23:44 +02:00
Make ESLint happy, fix minor issue with file manager breadcrumb
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user