Fixed Missing Scrollbar in Critera Tab of Filter Editor

This commit is contained in:
2025-11-28 15:34:54 -07:00
parent 6e0f985a19
commit 2bfc75a53c

View File

@@ -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>
);