Skip to content

Commit

Permalink
fixed zIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
henryk86 committed Nov 3, 2024
1 parent be9f57c commit 73ce061
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/utils/FileBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1938,7 +1938,7 @@ export const FileBrowser: React.FC<{
);
},
cell: (props: any) => {
return <th {...props} style={{ position: "sticky", top: 0, zIndex: 20 }} />;
return <th {...props} style={{ position: "sticky", top: 0, zIndex: 8 }} />;
},
},
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/utils/SelectFileFileBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ export const SelectFileFileBrowser: React.FC<{
);
},
cell: (props: any) => {
return <th {...props} style={{ position: "sticky", top: 0, zIndex: 20 }} />;
return <th {...props} style={{ position: "sticky", top: 0, zIndex: 8 }} />;
},
},
}}
Expand Down

0 comments on commit 73ce061

Please sign in to comment.