fix: fixed inner attr table header overlaying on outer table header

This commit is contained in:
2025-10-31 17:52:57 +04:00
parent 418e4b6b63
commit ee90ebe0f0

View File

@ -30,7 +30,10 @@ const InnerAttributesTable: FC<Props> = ({ attributes, moduleId }) => {
records={attributes} records={attributes}
verticalSpacing={"md"} verticalSpacing={"md"}
groups={undefined} groups={undefined}
styles={{ table: { width: "100%" } }} styles={{
table: { width: "100%" },
header: { zIndex: 0 },
}}
/> />
); );
}; };