fix: fixing height to allow clicking empty space then the arrow keys for -1 indexing
This commit is contained in:
@ -628,7 +628,7 @@ export const ProjectExplorer = ({
|
||||
ref={projectExplorerRef}
|
||||
>
|
||||
<div
|
||||
className={`absolute w-full ${activeIndex === -1 ? 'border-sky-500' : ''}`}
|
||||
className={`absolute w-full h-full ${activeIndex === -1 ? 'border-sky-500' : ''}`}
|
||||
tabIndex={0}
|
||||
role="tree"
|
||||
aria-label="Files Explorer"
|
||||
|
||||
@ -194,7 +194,6 @@ export const sidebarPanes: SidebarPane[] = [
|
||||
entry.children == null &&
|
||||
entry.path.endsWith(FILE_EXT)
|
||||
) {
|
||||
|
||||
systemIOActor.send({
|
||||
type: SystemIOMachineEvents.navigateToFile,
|
||||
data: {
|
||||
|
||||
Reference in New Issue
Block a user