mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-14 21:15:47 -07:00
Fixed Missing Scrollbar in Critera Tab of Filter Editor
This commit is contained in:
@@ -134,7 +134,17 @@ const TABS = [
|
||||
const TabPanel = ({ value, active, children }) => {
|
||||
if (value !== active) return null;
|
||||
return (
|
||||
<Box sx={{ mt: 2, display: "flex", flexDirection: "column", gap: 2.75, flex: 1, minHeight: 0 }}>
|
||||
<Box
|
||||
sx={{
|
||||
mt: 2,
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
gap: 2.75,
|
||||
flex: 1,
|
||||
minHeight: 0,
|
||||
overflow: "auto",
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</Box>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user