mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 16:55:48 -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 }) => {
|
const TabPanel = ({ value, active, children }) => {
|
||||||
if (value !== active) return null;
|
if (value !== active) return null;
|
||||||
return (
|
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}
|
{children}
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user