Fix #2253
This commit is contained in:
parent
1e58e108ba
commit
773c42e4f2
3 changed files with 4 additions and 3 deletions
|
@ -45,7 +45,7 @@ export default ({ withinFileEditor, isNewFile }: Props) => {
|
|||
|
||||
return (
|
||||
<div css={tw`flex items-center text-sm mb-4 text-neutral-500`}>
|
||||
{(files && files.length && !params?.action) &&
|
||||
{(files && files.length > 0 && !params?.action) &&
|
||||
<FileActionCheckbox
|
||||
type={'checkbox'}
|
||||
css={tw`mx-4`}
|
||||
|
|
Reference in a new issue